Hi Markus,
Thank you for your interest in Syncfusion products.
If you want to fix the RowHeight for the FilterBar row when resizing
the other rows, you can use QueryRowHeight event. The rowheight of filterbar
row will be remained as given RowHeight.
Please refer the
below code:
this.gridGroupingControl1.TableModel.QueryRowHeight
+= new GridRowColSizeEventHandler(TableModel_QueryRowHeight);
void TableModel_QueryRowHeight(object sender, GridRowColSizeEventArgs
e)
{
if (e.Index == 2)
{
e.Size = 25;
e.Handled = true;
}
}
Please let me know if you have any concerns.
Regards,
Neelakandan