If this is true where do I increase the height of the
row?
So far (v1.1) this is not a public functionality,
therefore you will need to do two modifications:
a) In dhtmlxgrid.css change
div.gridbox table.row20px tr td{
height:20px;
to
div.gridbox table.row20px tr td{
height:DESIRED_HEIGHTpx;
b) In dhtmlxGrid_srnd.js, line 14
if
(!this._srdh) this._srdh=20;
change to
if (!this._srdh)
this._srdh=DESIRED_HEIGHT;