Success! Looks like we've fixed this one. According to our records the fix was applied for
EXTJS-3994
in
4.2.0.663.
-
Sencha User
Code:
Ext.override(Ext.selection.RowModel, {
onRowMouseDown: function(view, record, item, index, e) {
// view.el.focus();
this.selectWithEvent(record, e);
}
});
This fix works with RowModel. I've the same issue with CellModel too.
Anyone has a workaround for CellModel?
-
A better one might
Code:
Ext.override(Ext.selection.RowModel, {
onRowMouseDown: function(view, record, item, index, e) {
view.el.focus(200); / Focus the element in 0.2 seconds - time for the click to happen...
this.selectWithEvent(record, e);
}
});
-
Sencha User
Animal thanks for the reply. That works for RowModel. Do you have a fix/workaround for CellModel (Ext 4.0.7)?
Thanks
-
Sencha Premium Member
any solution here for cell selection model please?
-
16 Aug 2012, 10:57 AM
#25
Ext JS Premium Member
Happening on a grid with a template column
4.1.1 version still have this issue when a template column is used in the grid
Last edited by sraghavachari; 16 Aug 2012 at 11:33 AM.
Reason: Set right version
-
Sencha Premium Member
Can we get a workaround/override for 4.1.1 in combination with the cell model selection please?
This bug is only fixed for the row model and not for the cell model selection.
Thanks!
-
Sencha Premium Member
-
Sencha Premium Member
It's fixed on Ext JS 4.1.3 - support only, you will need to wait for the general audience release.
-
Sencha Premium Member
Hey agunescu,
cool, thanks for the info!
Do you have maybe a "small" override for it in 4.1.1?
-
Sencha Premium Member