Wrap values in the column of the data table of Uipath APP

Hi all,

We are currently working on a UiPath App where we display data from an Excel file in a data table. One of the columns, “Description”, often contains long text values. Due to the auto-fit behavior of the data table, the content in this column extends beyond the visible area, and users need to scroll horizontally to read the full text.

We would like to wrap the text within this column so that all content is visible without requiring horizontal scrolling.

However, I couldn’t find any option or setting in the UiPath App data table control to enable text wrapping for column values.

Could anyone please guide us on:

  • Whether text wrapping is supported in UiPath Apps data tables?
  • If yes, how can we enable it for specific columns?
  • Any possible workarounds or alternative UI components that support wrapped text?

Appreciate your help and suggestions!

@nagendra.pabba1

Using a fixed width might help

Alternately html container can be used to dispay table..again

Cheers

Hi Anil, Thank you for the suggestion.

I’ve created custom HTML content within my UiPath process and passed it as an output argument to UiPath Apps. I’ve also mapped this output to a variable in the App.

Now, I want to bind this variable to a Custom HTML control in the App, so the HTML renders dynamically. However, I’m unable to find any binding option in the HTML Content property of the control.

Could you please guide me on how to bind a variable to the Custom HTML control in UiPath Apps?

Use a Custom List instead, where you can design the layout and allow text to wrap naturally in labels or text areas.

Cheers