Use the corresponding listener, all events are manage by listeners.
You can use the Listener or the Adapter.

editorGrid.addEditorGridListener(new EditorGridListener() {
            public void onAfterEdit(GridPanel grid, Record record, String
field, Object newValue, Object oldValue, int rowIndex, int colIndex) {
            }

            public boolean doBeforeEdit(GridPanel grid, Record record,
String field, Object value, int rowIndex, int colIndex) {
                return true;
            }

            public boolean doValidateEdit(GridPanel grid, Record record,
String field, Object value, Object originalValue, int rowIndex, int
colIndex) {
                return true;
            }
        });

Regards,
____________
Ing. Gabriel Gutiérrez



On Fri, May 15, 2009 at 10:35 AM, itkris <[email protected]> wrote:

>
> I have an editable grid with one of the columns being a combo box.
> when something gets selected in the combo box, i'd like to change
> values in other columns. I'm not able to figure out a way to do this.
> any help would be appreciated
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
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