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
605
Paging Feature in xamDataGrid
posted

Hi,

      I am looking for a Paging Feature in xamDataGrid. Like for example if i have 1000 records ,i want to display only first 100 records initially and then based on user requirement he can traverse through the remaining records based on some thing like  >(Next) <(Previous) or  (Prev and Next) buttons at the bottom of the Grid.Can we have this type of functionality in xamDataGrid

 

Thanks in Advance

Ram.

  • 69686
    Suggested Answer
    posted

    Hello Ram,

    Pagination is not directly supported, but you can navigate through the pages of records using DataPresenterCommands like RecordPageAbove, RecordPageBelow, RecordNext, etc as well as the BringRecordIntoView(...) method. Using these, you can implement your own pagination funtionality.

    Hope this helps.