Categories | Question details Back To List | ||
minimum height when we use a multiline datagrid Is it possible to put a minimum height when we use a multiline datagrid? I have put this code when it's not a multiline but I don't know where I can add it for the multiline option... It's not in div.gridbox_modern table.obj td... div.gridbox_modern table.row20px tr td { padding-right:4px; padding-left:4px; border-bottom:1px solid #E1E1C1; /* MLE */ border-right:1px solid #E1E1C1; /* MLE */ height:20px; white-space: nowrap; padding:0px;} Answer posted by dhxSupport on Apr 29, 2009 10:04 You can change style of a row using following css rule: div.gridbox table.obj tr td{ It will work if multiline is on or off. Please see more information about grid's appearance here http://www.dhtmlx.com/docs/products/dhtmlxGrid/doc/articles/Creating_custom_skin.html#grid_cust_skin |