Is it possible to have a tree with node and once the node is selected it can display input box next to it to enter the value so once the value is entered it will display the node and input text next to it?
You can use ready approach with editing items:
dhtmlx.com/docs/products/dht … edit.html#
Or you need exactly ‘pop-up input’?
Thanks for you reply but I do not want to edit the tree node.
what exactly I am trying to achieve is, tree (controls is checkbox) will contains the node and text box next to each node-which will be by default readonly once I select the node using checkbox the text box next to that node should be editable.
You have 2 ways of implementation:
- more difficult: to add these absolute positioned inputs manually (clean JS)
- easier: use TreeGrid
dhtmlx.com/docs/products/dht … _api2.html
You can add checkboxes in one column and inputs in the other.
But TreeGrid is PRO components.