GridTreeControl QueryCellInfo

Hello,

How to force the QueryCellInfo event for all cells? I have tried with Model.InvalidateVisual(), but it doesn't work.

Thanks.


1 Reply

MA Manikandan Syncfusion Team March 11, 2011 11:56 AM UTC

Hi Jorge,

Thanks for using Syncfusion Products.

You can manually force QueryCellInfo to be called again by calling InvalidateCell(). Please find the code snippet below.

Code [c#]
private void Button_Click(object sender, RoutedEventArgs e)
{
this.treeGrid.Model.InvalidateCell(GridRangeInfo.Table());
}

Please let us know if this helps.

Regards,
Manikandan J R.


Loader.
Up arrow icon