Problems whith GridGroupingControl.Refresh() and ListBoxSelectionRecursive

Hello,
I have some problems
1) I would like to update a row of the datatable of my gridgroupingControl (TreeGrid) but I don't have the .Refresh() property why? And what should I use instead? 
2) The ListBoxSelectionRecursive property doesn't work as well.

thanks for the help 

1 Reply

VK Vinish Kumar K Syncfusion Team October 15, 2012 03:42 AM UTC

Hi Aurélien,

 

Thank you for your interest in Syncfusion products.

 

Query 1

 

Refresh() in TreeGrid

The tree Grid is a reference of Grid. If you want to refresh tree grid you can use the refresh method for tree Grid. The GridGroupingControl have a Refresh() method. Please refer the below codes.

 

this.gridGroupingControl1.Refresh();

            this.gridGroupingControl1.TableControl.Refresh();

this.gridGroupingControl1.TableControl.RefreshRange(GridRangeInfo.Table());

 

 

 

Query 2

ListBoxSelectionRecursive

I am unable to reproduce this issue in our end. You can use the ListBoxSelectionRecursive  property in QueryCellInfo. It will works.

 

If you have further concerns, Please provide some code snippets. It will helps to us to provide a better solution.

 

Please let me know if you have further conerns.

 

Regards,

Vinish.

 


Loader.
Up arrow icon