Hi There,
how to fix the "table " widget`s width in reactive web app?
now once the field has long words , it will beyond the boundary(see attached picture).
Many Thanks and have a nice day!
Jack
Hello
There are couple of options you can do here.
You can also check similar posts with this issue.
I hope this helpsBest RegardsTousif Khan
Hi Tousif,
It seems , it will not function. I set the fixed width of the table widget, but it will overlap the screen . it seems it affected by the content . once the more content , the width will expanded. do you have any idea to fix it ?
BR,
You can add a css in your columns
https://www.javatpoint.com/how-to-wrap-text-in-css#:~:text=CSS%20word%2Dwrap%20property%20is,to%20fit%20in%20the%20container.
Hi Jack,
You can use CSS for horizontal scroll.
Wrap your table into container and user below CSS in container.
"overflow-x: auto;"
Happy Codding !!!!
Regards,
-V.S.-
Hi
You can adjust the width of header cells and row cell in percentage, according to your table content, such that the total width of all cols become 100%.
OR
As already said you can use CSS for horizontal scroll.