extjs - How to remove checkbox selection from all views in checkbox selection model in EXT grid -


i have ext grid checkbox selection model. grid contains multiple pages of 50 records each. have 'clear selections' button deselect selected rows in selection model. code :

 handler: function(){          this.selectionmodel.deselectall();          this.selectedreordsarray.clear();           },         scope: 

the problem is, when select records in first page , move second page , select records there well. if click 'clear selections' button deselects rows on page i.e. second page , when go page 1 , rows there still selected. there way remove checkbox selections pages.

thanks,

ps : using ext js 4.1.3


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -