Show list view page

0
Hello guyz,   how can i show a list of tasks with a checkbox in a page? i made this in my domain model, basicaly i want to see the tasks with from a listview widget so that the user who logged in can see the tasks.       
asked
1 answers
0

Hi Bilal,

 

You can create a Entity called Task.

Add Attributes like : TaskName, TaskDescriptiom and Status.

TaskName can be a String, TaskDescription also and Status a Enum of New, InProgress, Completed etc.

 

Add a Page where you can add new Tasks.

 

Add a Page with a ListView and as Datasource select the Task Entity.

You could also try to use a Datagrid 2 instead of a Listview. It have much more Functions like SearchFilter, Multi select checkboxes.

 

Hope this Helps,

answered