How set up second data grid on page without error

0
Hi, Im trying make a page where I import data from excel to data grid 2, but I need to insert another imported data to be selected and seen on this page. I can input another data grid 2, but I need to be seen only 1 line from atribute, like list of details about company. I cannot choose list view or something different from data grip 2 without error and I just cannot solve this errors. So Im looking for some solution. And I need have the data about company editable from the Page. Or from somewhere reachable for user. Thank you very much.
asked
1 answers
0

Hi,

 

From what I understood you are importing some data and displaying them using data grid 2. Now you want to see the individual row data in editable form on the same page.

 

  • Create a Helper Object: Add a new helper entity, which will serve as the main object on the page.

  • Set Up Association: Create an association between the helper entity and your imported data entity (the data you are displaying in Data Grid 2).

  • On-Change Microflow: Add an on-change event to the Data Grid 2 that triggers a microflow when a row is selected.

    • In this microflow, associate the selected row (the current object) from Data Grid 2 to the helper entity.
  • Data View for Editing: Add a data view to your page, linked to the helper entity(from context association). In this data view, selected  imported entity through the association will be show for editing.

Add a comment here if you have any more questions.

 

Best Regards,

Amit Gupta

answered