Threaded View
-
26 Jul 2010 5:41 AM #1
OnChange / AfterEdit event for EditorGrid with checkbox column
OnChange / AfterEdit event for EditorGrid with checkbox column
Hello.
I have a EditorGrid with a Checkbox column:
Now, I'd like to be notified when a row was edited.Code:CellEditor checkBoxEditor = new CellEditor(new CheckBox()); [...] gridEmployees = new EditorGrid<ModelData>(new ListStore<ModelData>(), new ColumnModel(configs_3));
But the event isn't coming when I check the checkbox. When I use a SimpleComboBox instead of the CheckBox, the event is coming when I change the selection. But I need the checkbox...Code:gridEmployees.addListener(Events.AfterEdit, changeListener);
Thanks for your help,
Jonas.
Similar Threads
-
EditorGrid, changing column afterEdit
By olriche38 in forum Ext 3.x: Help & DiscussionReplies: 7Last Post: 25 Feb 2010, 3:47 AM -
Event AFTEREDIT is not triggered when CheckBox is checked
By msuresh in forum Ext 2.x: Help & DiscussionReplies: 25Last Post: 26 Jul 2009, 1:28 AM -
why 'afteredit' event can't fire in my editorgrid
By qqeerr20012001 in forum Ext 1.x: Help & DiscussionReplies: 8Last Post: 23 Jul 2007, 1:51 AM -
afteredit event in an editorgrid sent twice!!
By lucas in forum Ext 2.x: Help & DiscussionReplies: 0Last Post: 9 Mar 2007, 12:59 AM


Reply With Quote