-
Sencha User
Answered: programatically selecting row makes scroll go bottom of the grid and up .....
Code
var ngrid = Ext.getCmp('newgrid');
ngrid.getSelectionModel().select(indexes[0]);
After removing few items from store. Selecting a row at particular index on stores bulkremove event causing the grid to scroll all the way down and move up.
especially in ie8
-
Best Answer Posted by
vinay19
selModel: Ext.create('Ext.selection.CheckboxModel', {
preventFocus: true,
allowDeselect: true
})
-
In what version of ExtJS are you seeing this issue? Does it only happen in IE8?
-
Sencha User
solved by sencha support ticket by setting preventFocus:true
selModel: Ext.create('Ext.selection.CheckboxModel', {
preventFocus: true,
allowDeselect: true
})
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules