Text Wrapping in data grid 2 on custom attribute

2
Hi ,   When I apply text wrapping on custom attribute in the data grid 2 the text is overflow flowing out of the data grid 2. I want the text to be wrapped and ellipsis should be added.  Please guide me here. Thanks in advance.
asked
1 answers
0

You could add styling that amounts to something like this:

 

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

 

That should normally work to get the effect that you want

answered