how can i modify default dhtmlx grid’s row heigh & font?
i find api so long time ,but it’s no any effects.
Please, try to use setRowTextStyle() method to change the row’s font.
docs.dhtmlx.com/doku.php?id=dhtm … wtextstyle
row’s height should increase automatically in case of enabled mutiline content:
docs.dhtmlx.com/doku.php?id=dhtm … emultiline
can i set every row as a common height
such as “style:height:30px” like this…
Such feature is not available, but you may try to use the css:
div.gridbox table.row20px tr td{
height:30px;
}
it cannot works,it needs invoke some method to open this effect about this css code.
ps:i use my googlechrome debug process,and modify the td height,but find when i select one row,the blue area is not okay
In case of using the dhx_skyblue skin you also need to disable the background image for the selected row:
<style>
div.gridbox_dhx_skyblue table.obj.row20px tr.rowselected td{
background-image:none;
}
</style>
can you help me modify the html file in test.rar 。。i cann’t make it work about row height.i am so sorry disturb you again and again.