Is there a way to display data in a tooltip when a column contains long sentences due to width constraints?
To achieve this, I have implemented a renderer function as shown below:
{
header: xppo.st('SDE_INCIDENT_DESCRIPTION1'),
width: 175,
sortable: true,
groupable: false,
dataIndex: 'IncidentDescription',
renderer: function(value, metaData, record, rowIndex, columnIndex, ds) {
return '<div ext:qtip="' + value + '">' + value + '</div>';
}
},
However, when the text does not contain any break space and consists of long words, it overflows beyond the specified area.
Is there a method to display the entire data within the specified div without overflowing from it?