Hi Abu,
I have another problem is the height of the grid.
The new version does not honor the grid specified height.
CODE
$opt = array();
$opt[“caption”] = “Ordenes de Compras seleccionadas”;
$opt[“sortname”] = ‘n_ordencompra’;
$opt[“sortorder”] = “asc”;
$opt[“width”] = “573”;
$opt[“height”] = “123”;
$opt[“rowNum”] = 40;
$opt[“altRows”] = true;
I sent you the images to email.
Please help me again
2 Answers
The minimum height is set to 200px. You can override it by setting onpage css style after the inclusion of css files.
<style>
.ui-jqgrid .ui-jqgrid-bdiv{min-height:100px}
</style>
Your Answer