Tengo debajo de un campo de cuadrícula donde quiero agregar puntos suspensivos - (...) para caracteres mayores a 100.
Intenté a continuación mirar algunos materiales en Internet, pero no funciona:
{ field : 'Latest Comments', headerName : 'Latest Comments', width : 250, cellStyle : { 'text-overflow':'ellipsis','white-space':'nowrap'} }También debe establecer:
overflow: hidden; text-overflow: ellipsis; white-space: nowrap;Asi que:
{ field : 'LatestComments', headerName : 'Latest Comments', maxWidth : 250, minWidth : 250, cellStyle : { 'text-overflow':'ellipsis','white-space':'nowrap', 'overflow': 'hidden', 'padding': 0 } }