column data in tooltip overflows.
Posted
by xrx215
on Stack Overflow
See other posts from Stack Overflow
or by xrx215
Published on 2010-04-22T18:45:29Z
Indexed on
2010/04/26
15:23 UTC
Read the original article
Hit count: 221
I want to show the data in the tooltip when a columns has long sentences because of width constrints.
for this i am using a renderer function as follows
{
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>';
}
},
but when the data has no break space and when the word is really long the text will extend beyond the text area.
how do i show the entire data within the div specified withot overflowing from it.
© Stack Overflow or respective owner