Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Emilie Meunier on Apr 23, 2009 08:10
open dhtmlx forum
heigth of row in a grid

Hi,

I used the dhtmlxgrid in my application that sometime are multiline and sometime not. I would like to know if it's possible to set a minimum of heigth?

Best regards,

Emilie
Answer posted by dhxSupport on Apr 23, 2009 08:36

You can change height of the row only via css:

  div.gridbox table.row20px tr td{
  height:20px;
  white-space: nowrap;
  padding:0px;
}


Answer posted by emilie on Apr 23, 2009 08:55
Thanks!