Here is the code; it does work without multiline; but with multiline it does not work
thanks
<link rel="STYLESHEET" type="text/css" href="../../codebase/dhtmlxgrid.css">
.toolbarTable{
background-color:#EDEDED;
}
.not_m_line{
white-space:nowrap; overflow:hidden;
}
div.gridbox table.row20px tr td{
height:55px;
}
</head>
<body>
<div id="grid_here" style="width:700px; height:500px;">
</div>
<div style="float:left" id="pagingArea"> </div>
<script type="text/javascript" charset="utf-8">
var grid = new dhtmlXGridObject("grid_here");
grid.setImagePath("../../codebase/imgs/");
grid.setInitWidths("120,*");
grid.setColTypes("ed,txt");
grid.setHeader("title,desc");
grid.setColSorting("str,str"); //added !
grid.attachHeader("#text_filter,#text_filter");
grid.enablePaging(true,10,5,"pagingArea");
grid.setSkin("dhx_skyblue");
grid.setPagingSkin("toolbar", "dhx_skyblue");
grid.enableMultiline(true);
// grid.setInitWidths("100,100,*");
grid.init();
grid.load("/superuser/mydata"); //added !
dp = new dataProcessor("/superuser/dbaction/");
dp.init(grid);
</script>
<input type="button" value="Add" onclick="grid.addRow(grid.uid(),'new user')">
<input type="button" value="Delete" onclick="grid.deleteSelectedRows()">
</body>