03-11-2009 11:06 PM
Hi Friends,
I am using Tree Control and subpanel in the same front panel..... For example the subpanel will load the authentication.... in that he user will enter the name ... at the same time while the user types i want to update that value in the Tree control ..... how to do that....parallely.....
03-12-2009 12:03 AM
One of the right-click menu options on the string control is "Update Value While Typing". If you select this option, then you'll get a Value Change event firing every time someone enters a character in the string. You could use these events to update the Tree cell as the user types.
03-12-2009 12:28 AM
Darren wrote:One of the right-click menu options on the string control is "Update Value While Typing". If you select this option, then you'll get a Value Change event firing every time someone enters a character in the string.
I never knew this before!
03-12-2009 09:58 AM
parthabe wrote:
Darren wrote:One of the right-click menu options on the string control is "Update Value While Typing". If you select this option, then you'll get a Value Change event firing every time someone enters a character in the string.
I never knew this before!
I guess that means it would make a good nugget...I'll add it to my list.
-D
03-13-2009 01:48 AM
But I already knew that checking this option will update the indicator connected to it dynamically.
So, from this info, now I can go ahead implementing this feature as a User Input option for even ML Boxes & Tables.