AD
Administrator
Syncfusion Team
October 17, 2006 04:06 AM UTC
Hi Frankie,
Use the RefreshRange/InvalidateRange method to refresh the specified range in a GridTableControl. Below is a code snippet
//For main table.
this.grid.TableControl.RefreshRange(GridRangeInfo.Row(rowIndex));
//For particular table.
this.grid.GetTableControl("TableName").RefreshRange(GridRangeInfo.Row(rowIndex));
Best Regards,
Haneef
AD
Administrator
Syncfusion Team
October 17, 2006 12:37 PM UTC
great. thanks.
>Hi Frankie,
Use the RefreshRange/InvalidateRange method to refresh the specified range in a GridTableControl. Below is a code snippet
//For main table.
this.grid.TableControl.RefreshRange(GridRangeInfo.Row(rowIndex));
//For particular table.
this.grid.GetTableControl("TableName").RefreshRange(GridRangeInfo.Row(rowIndex));
Best Regards,
Haneef