FNCDATAGrid and pagination

Using FNCDataGrid in Tms WebCore, with its dataset DataAdapter, is possibile to manage pagination?
With big dataset is faster on loading and more comfortable manage also pagination, in some situations.
Thanks

Right now, it's not officially supported, but I have already added some helpers to navigate through pages. Check out

TMSFNCDataGrid1.Root.FirstPage;
TMSFNCDataGrid1.Root.LastPage;
TMSFNCDataGrid1.Root.NextPage;
TMSFNCDataGrid1.Root.PreviousPage;
TMSFNCDataGrid1.Root.PageIndex;
TMSFNCDataGrid1.Root.PageCount;

It might help setting something up.

Well,
there is property or a way for activate pagination, instead of loading all records?
(TMSFNCDataGrid1.Root.Paging:=TRUE for example)

When you connect via the database adapter, the default load mode is almBuffered, which loads records for the visible area (page). If you then navigate through the grid using the methods mentioned, you basically have a pagination mode. But as mentioned, there are no helper controls or settings to control this behavior. Additionally ,you will still be able to scroll through the grid, so you might have to disable the vertical scrollbar as well.

Ok,
While waiting for an official paging management (with the relative UI) I will try to do some tests, as you suggested.
Thanks