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.
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.