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)
-
0
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.
-
0
Thanks - will give it a try