Dhivya
June 5, 2013, 12:37pm
#1
Hi,
Eliminate the wrapping of data in the cells. The Tool Tip will be used to see the remaining data that is not displayed. Currently, the rows are too wide and very little data can be seen.
I have tried below code
.not_m_line{
white-space:nowrap; overflow:hidden;
}
mygrid.forEachRow(function (cInd) {
mygrid.cells(cInd, 5).cell.className = ‘not_m_line’;
});
I need particular column only wrap it.
column No :5,11,27,38,110.
How i can use the above code…
You may define style/class right in the xml:
second column data
Dhivya
June 7, 2013, 1:53pm
#3
Thanx sematik,
And I have tried this also…
div.gridbox_dhx_skyblue .odd_dhx_skyblue{
background-color:#93BBD5 ;
color: #505155 ;
white-space:nowrap; overflow:hidden;
}
div.gridbox_dhx_skyblue .ev_dhx_skyblue{
background-color:#C8D8E5 ;
color: #505155 ;
white-space:nowrap; overflow:hidden;
}
Please, try to use:
{
white-space:nowrap !important;
overflow:hidden !important;
}