I am new to GWT-EXT. So basically my problem is how to programmatically
check all the checkboxes
placed as columnfield in the GridPanel.


The scenario is that I am to click a tree node in panelA then the details
should be seen in the panelB. This should be shown in the gridPanel.

When I used the code below, the  values in the gridPanel won't show.
Only the gridPanel header shows. Please help.



//===============================================
*

public* *void* onCheckChange(TreeNode node, *boolean* checked) {

*...*

gridPanel.doOnRender(new Function() { //added by *alz* 01-08-2010

public void execute() {

gridPanel.getSelectionModel().selectAll();

System.out.println("\n -->>You enter here doOnRender" );

}

});

fillGrid(Integer.*valueOf*(node.getAttribute("id"
)).intValue(),gridPanel.getStore());
*...*
}
--
You received this message because you are subscribed to the Google Groups "GWT-Ext Developer Forum" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to [email protected].
For more options, visit this group at http://groups.google.com/group/gwt-ext?hl=en.

Reply via email to