It'd be great if we could declaratively choose to not wrap table columns

Yo! I hope y’all are well. I often find myself assigning pixel widths to table fields so that the text doesn’t wrap. I’m aware I can automate this with some javascript and some css, but it’d be great if you could declaratively choose to not wrap text in a table field. Particularly now that we have scrolling tables where the width is less of a concern.

+1 on this issue…

I am also having this issue in a field editor component…along with a lot of other people (given the number of threads recently)…

The official response from Skuid to fix this issue is that you need to upgrade to the most recent version…

However, I just upgraded 30 minutes ago, and am still experiencing this issue…

I also tried using CSS word-wrap property along with !important directive, targeting the field editor, the column, and the individual field…but nothing has worked so far.

Louis,
I found the CSS culprit…to fix the word wrapping, try dropping in this CSS line anywhere on any in-line CSS resource:

.nx-basicfieldeditor-item &gt; .nx-field &gt; .nx-fieldtext {&nbsp; &nbsp; word-break: normal;<br>

}