Xojo2024R2.1: WebListBox cell text auto-wrap - how to?

I am sure it is trivial for most of people out there but I need some help, I don’t know how to approach this and if it is even possible.

I need to auto-wrap text in the cell in the WebListBox in the designated column and/or all columns, both for header and rows.

In Xojo2018 nothing special was needed. Here is the illustration:

Can someone enlighten me?

Try this in App HTML Header:

<style>
div.dts tbody th, div.dts tbody td {
    white-space: normal;
}
</style>

may cause problems as, at least, will change the row height. It will show all text without cuts for any cell (maybe is not what you want, but you can experiment with it).

1 Like

Thanks as usual, your suggestion seems to do what I need.

Have a great day!