Value changed event

Hi ,
Do we have any event that gets triggered on change of value in an editor. I don’t want to use the AftereditStop event as in some cases the value is being set into the editor by calculations.

You can try to use

$("some").data.attachEvent("onStoreUpdated", handler);

It will be called for any changes in the data

Thank you , I will give this a go.

Hi,
I want the capability to identify the row ,column that has changed when a value is changed. Is there an event that will provide me this information.

onStoreUpdate event will provide the id of changed row ( first parameter ), as for column - such information is not tracked.

You can use edit events to get the changed column. In case of changing data through API - there is no way to detect which column was changed.

Thank you