Is there any example of how to create a list page with the below elements and functions in Power Pages?
1. having search fields
2. having a list, includes some columns from two tables, and list items pre filtered by the current login user
3. can edit the list item, but some fields needs to be disable for editing
4. having pagination so user could go to next page of the list
For example, the list page is for search/edit projects, it links to two tables, Customer and Project, each project belong to only one customer, each customer could have multiple projects, in Project table has a Customer_Id foreign key links to Customer table.
The list could have columns like: Customer.Name, Project.Title, Project.Status, Project.StartDate, Project.FinishDate, Project.Notes
The current login user is a manager of one customer, the user can only see his customer's projects but not other customers'.
The user could open a project to view/edit it (some fields needs to be disable for editing).
Thanks