Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
60
how to add button in iggrid pager
posted

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.

  • 24671
    Suggested Answer
    posted

    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