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
385
AutoFill Pagesize dropdown in Grid
posted

How to autofill page size dropdown in igGrid?

Parents
  • 23953
    Offline posted

    Hi,
    If you want to define custom page sizes then you should use igGridPaging.pageSizeList property like this:
    //Initialize
    $(".selector").igGrid({
    features : [
    {
    name : "Paging",
    pageSizeList : [10, 20, 30]
    }
    ]
    });

    Note: I'm not sure I understood your question correctly, so my answer may be wrong. Please clarify if this is not what you're looking for.

    Hope this helps,
    Martin Pavlov
    Infragistics, Inc

Reply Children