The Syncfusion® native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
Does the GroupingGrid have an equivalent to the GridDataBoundGrid''s Suspend/ResumeBinding calls?
Just wondering what I should be doing prior to changing the underlying datasource.
Thanks,
Sean
ADAdministrator Syncfusion Team April 20, 2004 03:41 AM UTC
Hi Sean,
There is no SuspendBinding.
But you can just set the following two properties:
groupingGrid.Table.TableDirty = true;
groupingGrid.Table.SummariesDirty = true;
TableDirty = true indicates to the engine that it needs to recategorize elements and refresh counters and summaries the next time it is painted or the the next you want to access a record or summary information.
In the bindingList_ListChanged event handler the engine checks for the TableDirty flag. If it is set to true the ListChanged event will be ignored.
Stefan
ADAdministrator Syncfusion Team April 20, 2004 10:38 AM UTC
it works fine, thanks. i was wondering if you guys have tested with the new .net framework sp2. will everything work?
tia
ADAdministrator Syncfusion Team April 20, 2004 10:39 AM UTC
posted in wrong place pls delete
SGSean GreerApril 20, 2004 11:56 AM UTC
Thanks Stefan.
BTW, the 2.0 Suite looks great. You guys have done a incredible job in a short amount of time. Now we just need a little bit more documentation...;)