i want to run an action after updating a field in a data grid, that incorporates the updated values of the data grid.
As far as i can tell, the message to react to is CloseFieldEditor - but this runs before the value in the field editor has been added to the dgData, so
Code: Select all
on CloseFieldEditor
//do some action with new text
end CloseFieldEditor
I know i can probably get the text of the fieldEditor but that would be a lot of extra work - i just need to know when the update of the data grid's data has completed, but can't seem to find a message to do this...
Grateful for some pointers...