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.
Somtimes the grid doesn't refresh correctly (after column add/remove for example).
Moreover, I encountered problems when deleting some columns one by one, but in the same method, without calling any refresh method between each deletion.
Thank you.
ADAdministrator Syncfusion Team October 2, 2002 05:14 PM UTC
Are you using the 1.1 version?
If you are sequentially removing several rows, you may want to sandwich the code that removes the rows between calls to GridControl.BeginUpdate and GridControl.EndUpdate. This will avoid unnecessary drawing that may lead to a 'jerky' display.
CCCyrille ClaustreOctober 3, 2002 05:53 AM UTC
I tried BeginUpdate / EndUpdate, but in fact I may have problems with the events sequence.
I'm trying to look further in my code.
CCCyrille ClaustreOctober 4, 2002 05:35 AM UTC
Does the Refresh() method has effect when called between BeginUpdate() and EndUpdate() ?
ADAdministrator Syncfusion Team October 4, 2002 08:47 AM UTC
Any grid drawing between the BegiUpdate and EndUpdate is at best deferred, or maybe ignored entirely depending upon the parameter you pass to EndUpdate.