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.
Hi Clay,
Is there anyway to find out whether the Text in the Cell has been changed or not??.
I need to populate slave combo box cell only when the Text in the Master combo has been changed..
Is there something like Cellstate is there??
Thiagu.
ADAdministrator Syncfusion Team October 7, 2004 12:06 AM
Hi Thiyagu,
Check the grid.CurrentCell.IsModified property to find out if the current cell contents were changed.
The CurrentCell also has a Renderer. For the Renderer you can then check the Renderer.ControlValue and Renderer.ControlText properties.
Stefan
THThiyaguOctober 7, 2004 12:55 AM
Hi stefan,
I''m using CurrentCell Editing Complete event to populate the Slave Cells.. When I check for CurrentCell.Ismodified, it is showing false even after I change the values in the Master Combo..
Also, ControlText and ControlValue is showing only the text after the Changes in the current Cell...
Would be helpful if You can reply back as early as possible..
Thiyagu.
>Hi Thiyagu,
>
>Check the grid.CurrentCell.IsModified property to find out if the current cell contents were changed.
>
>The CurrentCell also has a Renderer. For the Renderer you can then check the Renderer.ControlValue and Renderer.ControlText properties.
>
>Stefan
>
ADAdministrator Syncfusion Team October 7, 2004 01:20 AM
When that CurrentCellEditingComplete is raised, the the value has already been saved, and IsModified is already been reset.
Try using the CurrentCellValidating event. This event will only be raised when the currentcell has changed. In it, you can use grid.CurrentCell.Renderer.ControlText to retrieve the new value in the cell.
THThiyaguOctober 7, 2004 01:23 AM
Thanks Clay... I''ve tried with CurrentCellChanged event.. It is working fine.
Thanks for your reply in tandem..
Thiyagu