I am new to GWT. I have a CellTree on the left hand side consisting of three hierachies namely - session, uproc and batch. I have three Composite Widgets in the center, one for each Session, Uproc and Batch for displaying its details. In the UiBinder of these widgets, I have FormPanel which will display the data.
I want that when I click on the Session Node of the tree, my Session formPanel widget should be filled with session data and the visibility of the uproc and batch panels should be set to false.
Likewise, when I click on the Uproc Node,Session and Uproc Panel should be filled with data (uproc is child of Session), but fields in session panel should be disabled and the batch panel should be disabled.
Likewise, when I click on the Batch Node,Session and Uproc Panel should be filled with data (batch is child of uproc), but fields in session and uproc panel should be disabled and the batch panel should be filled with the data of the selected batch.
Please let me know how to go about implementing this scenario. I am using gwt 2.4. Thanks