BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Hi Rojar,
Thanks for using Syncfusion products.If you want to update the grid with the grouped columns and maintain the expand state of the groups, you can use the SourceListListChanged event to set the TableDirty as false. Please refer to the following code snippet,Code Snippet:this.gridGroupingControl1.SourceListListChanged += new TableListChangedEventHandler(gridGroupingControl1_SourceListListChanged);void gridGroupingControl1_SourceListListChanged(object sender, TableListChangedEventArgs e){//Set the table as dirtye.Table.TableDirty = false;}Sample Link:Regards,Adhi
Hi Rojar,
Thanks for using Syncfusion products.If you want to update the grid with the grouped columns and maintain the expand state of the groups, you can use the SourceListListChanged event to set the TableDirty as false. Please refer to the following code snippet,Code Snippet:this.gridGroupingControl1.SourceListListChanged += new TableListChangedEventHandler(gridGroupingControl1_SourceListListChanged);void gridGroupingControl1_SourceListListChanged(object sender, TableListChangedEventArgs e){//Set the table as dirtye.Table.TableDirty = false;}Sample Link:Regards,Adhi
HiCan´t get it to work. First I don´t use a DataTabel I use a class to hold my data. Is this a problem? As soon as I set my DataSource to the new entity class it closes the group. even if I do as you proposedBr,Roger.