How can I make the column Fixed width and the contents goes wrap.
You may set the “Width” and “Wrap” settings for the field, see the topic Field Setup in the help file.
I have a long value which does not have line break
one of the example value is "Result is Transaction/125485218555/NEFT/14952635874521125/suceess/ref-45879562452452"While displaying the above value how can I make the “/” as line break because “/” is use many time.
But I don’t want to change the actual database value.
Simply try this in “Row_Rendered” server event:// change your_field to your actual field name
$this->your_field->ViewValue = str_replace(“/”, “
”, $this->your_field->CurrentValue);