I have the following code that displays a table column. setWrapText is ignored entirely and using enableTextWrap sets the text to black regardless of any CSS or any behaviors like CSS selected hover etc. Is there anything I am missing?
readonlyColumn("Question", RequestForInformationEntity::rfiQuestion) {
cellFormat {
text = it
alignment = Pos.BASELINE_LEFT
isWrapText = true
}
enableTextWrap()
weightedWidth(1.0)
}
I have the following code that displays a table column. setWrapText is ignored entirely and using enableTextWrap sets the text to black regardless of any CSS or any behaviors like CSS selected hover etc. Is there anything I am missing?