Extjs4.2 grid Store 删除问题

来源:互联网 发布:三轴加速度传感器算法 编辑:程序博客网 时间:2024/04/30 00:27
解决grid该页删除后向前跳页的问题
if((Ext.getCmp("nutchConfigurationGrid").getStore().totalCount-1)%Ext.getCmp('nutchConfigurationGrid').getStore().pageSize==0){
                    var pageIndex = (Ext.getCmp("nutchConfigurationGrid").getStore().totalCount-idArray.length)/Ext.getCmp('nutchConfigurationGrid').getStore().pageSize;
                       
                        if(pageIndex != 0){ //indicate that there has data after delete
                        Ext.getCmp('nutchConfigurationGrid').getStore().currentPage = 1;
                       }else{
                        Ext.getCmp('nutchConfigurationGrid').getStore().currentPage = pageIndex;
                       }
}
                       Ext.getCmp("nutchConfigurationGrid").getStore().load();  
0 0
原创粉丝点击