I am using Ext.toolbar.Paging for a grid panel. When resizing the panel the overflow menu appears on the paging bar. But total count is not displayed correctly. Please check my paging bar.
pageSizingCombo is a defined object using a combobox for change paging size:
Ext.create('Ext.toolbar.Paging',{
store:store,
dock : 'bottom',
itemId:'paging-bar-view-panel',
displayMsg: '{0} - {1} of {2}',
items:{
xtype : 'pageSizingCombo',
pageSizes : [10,20,25,50,75,100],
width : 50
},
displayInfo: true,
enableOverflow: true
})
Paging bar without overflow menu.
Paging bar with overflow menu
It's showing "no records found". Is there are any solution for this issue.