how to use checkbox in list view to view those data?

0
I have added the checkbox in list view in the table and don’t know how to view the data in new page.
asked
3 answers
3

Hey Arvind,
Just make a NPE in your domain model add an attribute of type boolean (eg. selected(boolean)) and all the values that you want to show in the next page

 Now, place the dataview in the listview of the page where you are showing your data, Now as soon as the user sets the sekected attribute as true, call
 an on change microflow and map the values of your object in the NPE , Now as soon as the user presses a button that opens the next page,
 go to the next page and then using a microflow, retrive all the objects of NPE which aret set to true and then show it into the new page.

Hey Arvind,
Just make a NPE in your domain model add an attribute of type boolean (eg. selected(boolean)) and all the values that you want to show in the next page

 Now, place the dataview in the listview of the page where you are showing your data, Now as soon as the user sets the sekected attribute as true, call
 an on change microflow and map the values of your object in the NPE , Now as soon as the user presses a button that opens the next page,
 go to the next page and then using a microflow, retrieve all the objects of NPE which are set to true and then show it into the new page.

Hope it helps.

answered
0

Hi Aravind,

 

Just select the list view under the general tab 0n-click event and select show page and select the page you want to show the data where it contains the data view of the same entity.

 

Hope it helps.

answered
0

In the page you can use an Page Parameter to receive the data from the listview.

answered