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
365
Igx Angular Grid
posted

Hi , am following this link mentioned in the example for Server side pagination. looks like some properties are deprecated. can you share the updated example along with below questions

in Compnent.html  we have igx paginator  and certain properties , events like below and corresponding action in ts file

 [(page)]="page"
            [(perPage)]="perPage"
            [totalRecords]="totalCount"
            (pagingDone)="paginate($event.current)"

instead of having in .ts file can we move all the logics to service or an separate file ? reason behind is to have seprate logics in seprate files can you share some example.