Hayri ASLAN Posted April 5, 2014 Posted April 5, 2014 hi farshad can we add this feature to unidbgrid? (PagingToolbar) (Displaying topics 1 - 50 of 6679) http://dev.sencha.com/deploy/ext-4.0.1/examples/grid/paging.html
Sherzod Posted May 5, 2014 Posted May 5, 2014 Hi Farshad! Is it possible add this property? sender.pagingBar.displayInfo = true; //does not help. Thank you
Sherzod Posted May 5, 2014 Posted May 5, 2014 While it is possible to use this approach (quick and dirty workaround)... UniDBGrid1 -> ClientEvents -> ExtEvents add beforerender: function beforerender(sender, eOpts) { if (sender.pagingBar) { sender.pagingBar.hide(); sender.addDocked( {dock: 'bottom', items: [new Ext.PagingToolbar( {pageSize: sender.store.pageSize, store: sender.store, displayInfo: true, emptyMsg: "No records to display" }) ] }); } }
Recommended Posts