AD
Administrator
Syncfusion Team
May 3, 2006 05:22 AM UTC
Hi Chuck,
Could you try this code to hide a Row in a grid. Here is a sample.
//For Main Table
this.groupingGrid1.TableControl.Model.HideRows[3] = true; // For Hide a 3rd Row
this.groupingGrid1.TableControl.Model.HideRows[3] = false; // For Show a 3rd Row
// For Nested Table
this.groupingGrid1.GetTableControl("NestedTableName").Model.HideRows[3] = true; //For Show
this.groupingGrid1.GetTableControl("NestedTableName").Model.HideRows[3] = false; //For Hide
Please let me know if this hepls.
Best Regards,
Haneef