BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
protected internal virtual bool OnSaveChanges()
{
if (CurrentCell.IsModified)
{
Grid.Model[currentRowIndex, currentColIndex].FormattedText = this.ControlText;
return true;
}
return false;
}
So, in your renderer code, if you set ControlText and CurrentCell.IsModified to be true when the cell value is changed, this may be all you need to do to tie into the grid's normal updating architecture.
If that does not work, you can override OnSaveChanges, and try other code there to save the changed value.