I have to add 2 buttons (one on the left side of pagination icons (Next-Prev) and the other to the right side of it.)
I have added these 2 buttons using the "items" property in PagingToolbar.
bbar: new Ext.PagingToolbar({
pageSize: 10,
storetore,
displayInfo: true,
prependButtons:true,
items:[
{
pressed: true,
enableToggle:true,
text: 'Prev 2000',
toggleHandler: function(btn, pressed){
Since I have use prependButton : true , I get both the buttons on left side .
I want the 1st button on left side and the second button on right side.
How do I implement this???