Is it possible to display a DataTable object (each row of it) in Apps Studio Web?
I tried using the Table control, but it only accepts this object type: Apps.Controls.ListSource(Of Apps.Controls.TabularInitClass),
which I don’t understand. Studio Web - Table
If someone has already figured this out, I’d appreciate your help.
You can’t bind a UiPath DataTable directly to an Apps Studio Web Table. Apps uses ListSource / collections, not DataTables.
Convert the DataTable to a List of Objects (collection) in the process (or via an Apps integration), then bind that list to the Table control. Each column in the table maps to a property of the object.