NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started by: Niels Larsen on October 14, 2024, 05:45:40 AM
-
Hi
I have a tree control on a form. If a node is clicked I can capture the id from GetValue('row') - no problem.
The question is how to select (highlight) a node when initializing the tree.
Regards Niels
-
When populating;
In your populate::aTree routine;
add a field to the TreeQueueType
selected Long ,name('selected | boolean')
Then when populating the queue set this field to true or false.
14.28 required for this next bit;
Later on, after the tree has been populated, You can select something using
p_web.ntTree('aTree','select','rowid')
(In both cases aTree is the Use Equate of the tree field on the form)
-
Thanks!
Works perfectly.