Smart GWT v8.2p_2012-09-20/LGPL Development Only (built 2012-09-20)
GWT 2.4
FireFox 17.0.6 ESR
---
In my application, I set my tree grid to allow editing of nodes by calling
after calling theTreeGrid.setData(theTree)
My TreeGrid is not databound, I build the tree manually and populate the TreeGrid by calling setData.
Is there a restriction on editing the nodes if the TreeGrid is not databound? I would like to change the name of the node if at all possible via double-clicking on the node and then allowing the user to enter in the new value.
GWT 2.4
FireFox 17.0.6 ESR
---
In my application, I set my tree grid to allow editing of nodes by calling
Code:
theTreeGrid.setCanEdit(true);
My TreeGrid is not databound, I build the tree manually and populate the TreeGrid by calling setData.
Is there a restriction on editing the nodes if the TreeGrid is not databound? I would like to change the name of the node if at all possible via double-clicking on the node and then allowing the user to enter in the new value.