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.
I have a custom collection (CustomerIncomes)bound to the GDBG. When I change the data in the objects (CustomerIncome) in CustomerIncomes and do a GDBG.Refresh(), all the cells in the GDBG change to reflect the new data, except the current cell. If the user moves off the current cell, it refreshes to show to new data. How can I make the current cell refresh at the time I call GDBG.Refresh() instead of later when the user moves off the cell?
-----
Lee Perkins
ADAdministrator Syncfusion Team June 9, 2004 02:45 PM UTC
Instead of calling grid.Refresh, try calling grid.RefreshRange(grid.ViewLayout.VisibleCellsRange, true);
The second argument equal true should force the currentcell to refresh.
LPLee PerkinsJune 9, 2004 03:22 PM UTC
Thank you. That was exactly what I needed. :) The object model (just on the GDBG!) is so vast it''s sometimes easy to get lost when learning it. I can''t believe how "all encompassing" it is. :)
-----
Lee Perkins