Hi,
My issue is whenever I try to enable tool tip for one particular column the ellipsis feature on that column disabled.(means: if I do enableellipsis: true for the grid. This is applicable for the grid (all columns )but disappear only for that particular column on which I apply tooltip feature).
code is
var cellsrenderer = function (row, columnfield, value, defaulthtml, columnproperties) {
return “<div style=’margin-left: 10px; margin-top: 5px;’ title='” + value + “‘>” + value + “</div>”;
}
and
enableellipsis: true,
columns:[
{ text: <js:string>some value</js:string>, width:’15%’, align:’center’, cellsrenderer: cellsrenderer}
ellipsis feature disappear for the above column only.
Please Help.
Regards
Aruna