Request your help on the Data table view in the Uipath Apps

Hi all, I am trying to read data from excel and want to show it to the data table of UiPath apps. I have created a process reading data from excel and sending that data table as a output data table to UiPath apps.
I have selected data source as Processes.AutomationName.out_dt.ToListSource()
while running the process i can see data fetched to the data table but the values in the column are [Object Object].
Request your help to get the actual values as a string in the columns instead of Object

Hi @nagendra.pabba1 ,

UiPath Apps only supports primitive types (e.g., String , Int32 , Boolean ) in DataTable columns. If any column contains complex types (like System.Object , JObject , or custom classes), the UI will render them as [Object Object].


Apps - Use DataTable with Table and Edit Grid controls

Check above doc for more information.

To solve:

  1. Ensure the process returns a DataTable with only primitive types(especially String), before sending to Apps.
    Then
  2. Bind the DataTable using: Processes.AutomationName.out_dt.ToListSource()

Check these steps and let us know your output.

Happy Automation.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.