I am taking the approach suggested to capture listgrid field changes because there is no listgrid.cellChange() like there is for dynamicform.itemChange().
In VB I do not see any property or event on my listgridfields with which to supply this string method.
If there is another way to supply my custom method, I would be keen on knowing it.
Thanks.
void cellChanged (record, newValue, oldValue, rowNum, colNum, grid) [String Method]
Fires after user edits have been successfully saved to the server, when the new value doesn't match the value before editing.
If you want immediate notification of a changes before changes has been saved to the server, implement field.change() or field.changed() instead.
Fires after user edits have been successfully saved to the server, when the new value doesn't match the value before editing.
If you want immediate notification of a changes before changes has been saved to the server, implement field.change() or field.changed() instead.
If there is another way to supply my custom method, I would be keen on knowing it.
Thanks.