How to expand table rows width

Hello,

I’m trying to make the columns wider so the text doesn’t wrap and when I hit configure, then apply it doesn’t do anything.

Hello @CD_Engineers

Are you configure here?


If so, could you provide us with your appId and the page name to check it

Regards

So I noticed that if I have too many items within the table it doesn’t work. I’m wondering if there’s a way to fix that?

27CFF991-B8B6-1C94-FF36-C32CD79DF700 - ID
Management - Page

Hello @CD_Engineers!
You can achieve the desired result by setting custom styles in the following way:

.bl-data-table {
  width: max-content;
}

Regards,
Alexander

That did not work, it still doesn’t change if I have too many items

This is because you already have a width set for the table, if you remove it, everything will work:

You will also need to change the overflow so that the table does not extend beyond the container’s boundaries:

Regards,
Alexander