Any advice for forcing a datagrid text field to wrap the text and adjust the row size as appropriate? I have “No wrap” turned off, I’ve tried turning it on/off to reset but the text just keeps bleeding into the next column. I’ve set the column widths and that’s working ok but I cannot get the text to wrap to the next line rather than being invisible.
Hey @kat_worlded
You’d need to turn those elements to Long answer type (instead of Short answer). It will turn it to a textarea element that handles text-wrapping.
The issue remaining is that the height won’t be automatic based on the content.
One way to do that is to bind the height of the element to a formula that calculates the height of the content (context.thisInstance .children[0].scrollHeight+"px"
) but on page resize, the height remains the same. So you’d need to listen to that (else, a scrollbar or white-space will appear).