Data populating in table layout.

Hello,

I want to create a table layout which has four columns. Consider A,B,C,D.

In that table I want to populate data of Employee which is stored in Data Type.

Column A is of dropdown type and other columns are in read-only form.

After selecting value from dropdown column A (EmpID), all other columns should be populated with

corresponding EmpID value like empName, Address, salary.

Thanks,

Aditya.

@AdityaC8

After Selecting the value from dropdown, you can call a Datatransform to connect to Datapage and get respective empName, Address, salary. You can try something like OnChange of Dropdown :

  1. Post the value

  2. Call a data transform, to pass the value as a parameter and set the values accordingly

  3. Refresh the section. Ensure to check “disable submit on refresh”, such that the set value isn’t overridden.

@TashikaS

Thank you so much!

It is working as per steps you have suggested.

Regards,

Aditya Chougule.

@AdityaC8

Glad to help you!