Handling Paging Events in FNCDataGrid

I want to change page information, I use OnPageChanged event

procedure TForm130.TMSFNCDataGrid1PageChanged(Sender: TObject; AOldPageIndex, ANewPageIndex: Integer);
begin
  TMSFNCDataGrid1.FooterPageInfo.Text := Format('Viewing page %d of %d', [ANewPageIndex + 1, TMSFNCDataGrid1.PageCount]);
end;

Everything is ok when I use navigation buttons. But after clicking on grid and moving cursor inside grid, page information changes to standard text. The same is after resizing grid after resizing form. Can you look at it, please.

Hi,

Right now this is not possible, but we'll introduce properties to configure the format.
In the next version you will be able to set

TMSFNCDataGrid1.Footer.Paging.PageInfoFormat := 'Viewing page %d of %d';

Thank's a lot