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 weird situation here. I have a row with a numeric value and a button cell.
If I change the value in the numeric cell, and then click the button cell next to it (without first tabbing out or clicking outside the numeric cell), the event handler for the button cell still sees the old value in the numeric cell.
In otherwords, I have to first tab out or click outside of the numeric cell *before* clicking the button cell, or else the value in the numeric cell won''t be the new one.
How to I fix this problem?
ADAdministrator Syncfusion Team July 1, 2004 09:36 AM
It may be the cell button click is being triggerred before the cell has had a chance to save its changes. If so, in your button handler, try calling
this.gridDataBoundGrid1.CurrentCell.ConfirmChanges();
before you try to access the cell value.