How can we override the row height of tree grid view. That is setted through code in ‘dhtmlxtreegrid.js’
_tgc.start="
";
I dont want to change it. I want to override it.
I dont want to change it. I want to override it.
How can we override the row height of tree grid view. That is setted through code in ‘dhtmlxtreegrid.js’
_tgc.start="
You can change row’s height with following css rule:
div.gridbox table.row20px tr td{
height:20px;
white-space: nowrap;
padding:0px;
}
This code is not working.
If you have attached skin to your grid, code should looks like that:
div.gridbox_skinName table.row20px tr td{
height:20px; <=== here you should set necessary row height
white-space: nowrap;
padding:0px;
}
If this code still doesn’t work please contackt support@dhtmlx.com and provide sample where this issue appears.