SMART datagrid v.1 > Classes > RowGroupPanel
Pixel unit height of Row grouping panel displayed on the top of grid.
It will be applied only if specify a value greater than 0. Comparing with minHeight specified greater than 0, the smaller value will be set as the height of panel.
Defaults to 0.
grid.setOptions({
rowGroup: {
panel: {
height: 25
}
}
});
grid.setOptions({
groupPanel: {
height: 25
}
});
grid.setGroupPanel({
height: 25
});
grid.groupPanel().setHeight(25);