UiPath Apps - Studio Web

Hi Team,

Is it possible to display a DataTable (including all rows) in UiPath Apps Studio Web?

I tried using the Table control, but it only accepts the following object type:
Apps.Controls.ListSource(Of Apps.Controls.TabularInitClass)

I’m not sure how to convert or bind my DataTable to this format.

If anyone has implemented this already, please share your approach or guidance. Thanks!

@Mohammed_Shahid01

Can you check below thread,

Hope it helps

Hi @Mohammed_Shahid01

You can use DatatableVariable.ToListSource() for this scenario.

It converts the DataTable into the required format (Apps.Controls.ListSource(Of Apps.Controls.TabularInitClass)) that can be directly bound to the Table control in Apps Studio Web.

Hi @Mohammed_Shahid01

Yes, it’s possible, but the Table control in UiPath Apps does not directly support a normal DataTable. The easiest way is to convert the DataTable into a list or collection format and then bind that collection to the table. Usually people convert the data into JSON or a list of objects before sending it to the app. Once it’s in the correct format, all rows can be displayed properly in the table control.