Hi,
I am trying to change the title of a ListGridField from an event handler, after the grid has been populated and rendered. The title doesn't change in the page. Code:
The ListGrid is databound. Does that make a difference? What should I be doing?
The SmartGWT version is the latest (I think), and GWT is 2.2, Firefox 3.6.
Thanks
I am trying to change the title of a ListGridField from an event handler, after the grid has been populated and rendered. The title doesn't change in the page. Code:
Code:
viewRadioGroup.addChangedHandler(new ChangedHandler() { public void onChanged(ChangedEvent event) { locationField.setTitle(viewRadioGroup.getValueAsString()); // refresh listgrid } });
The SmartGWT version is the latest (I think), and GWT is 2.2, Firefox 3.6.
Thanks
Comment