AD
Administrator
Syncfusion Team
September 11, 2003 06:55 PM UTC
CurrentCellValidating is a cancelable event that fires when the user triws to leave any modified cell. So you could use that to catch a change. To get the new value, you use grid.CurrentCell.Renderer.ControlText.
If you want to catch each change in the cell (without wating for the user to confirm the change by leaving the cell), then you can use CurrentCellValidateString. There e.Text has the value.
PL
Paul Laudeman
September 12, 2003 09:33 AM UTC
Excellent! That's exactly what I was looking for - thanks Clay!
> CurrentCellValidating is a cancelable event that fires when the user triws to leave any modified cell. So you could use that to catch a change. To get the new value, you use grid.CurrentCell.Renderer.ControlText.
>
> If you want to catch each change in the cell (without wating for the user to confirm the change by leaving the cell), then you can use CurrentCellValidateString. There e.Text has the value.