Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X
Hello,
I have a field that is receiving string values, i want to show the current value in the pre said text field (i already done it) but when come a new value, the current value get inserted into an infotable and new get displayed in the text field!!.
Regards,
Yous
Solved! Go to Solution.
You can add a subscription to your property DataChange event.
You want to have the string historically saved and display the most current?
I would log the property, that means you'll have all values over time and you can retrieve that from the value stream.
For the updated value to display, I usually use GetProperties with the option to push updated values. But you can also use an AutoRefresh
Hello,
Thanks for reply, it should work that way but what if need something like listner (event & subscription).
Regards,
Yous
You can add a subscription to your property DataChange event.