Currently i'm using iggrid table in our application, as per our requirement i would like to add a button on table pager, kindly help me how to add button in the pager right next to the pagination.
Hi,
you can locate the pager, and append your element in the container where the page buttons are:
$("#grid1 > #grid1_pager").append(<your element>);
or if you want to add your stuff after the last button:
$("#grid1.ui-iggrid-paging").append(<your element>);
Angel