Base solution for your next web application
Open Closed

Using PagedResultDto with a non table display #3440


User avatar
0
20summers created

Hi,

Instead of using PagedResultDto with JTable (which is awesome), I want to display the users in the system to the other users, in a different layout (see the link). [http://webapplayers.com/homer_admin-v2.0/contacts.html]) How would I use PagedResultDto to do this?


2 Answer(s)
  • User Avatar
    0
    ismcagdas created
    Support Team

    Hi,

    If you are using MVC version, you can show this in a foreach loop. If you are using an angular version you can do it with ngFor directive.

    If you also want to implement paging here, you need to send

    • MaxResultCount
    • SkipCount parameters to your app service method as well.

    MaxResultCount is 10 by default if you don't sent it as far as I remember.

    Thanks.

  • User Avatar
    0
    20summers created

    Thanks - will give it a try