Editing Event

From Documentation
Revision as of 10:05, 25 June 2013 by Hawk (talk | contribs) (Created page with " = Editing events = There are three editing events that ZK Spreadsheet supports. onStartEditing - This event is fired when the user starts editing a cell. It is fired only once ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Editing events

There are three editing events that ZK Spreadsheet supports.

onStartEditing - This event is fired when the user starts editing a cell. It is fired only once at the beginning when the first key is pressed when the user starts editing. Event listeners are provided with StartEditingEvent on receiving this event. onStopEditing - This event is fired when the user has finished editing a cell. It is identified by the user hitting the enter key or clicking outside of the editing cell. Event listeners are provided with StopEditingEvent on receiving this event. onEditboxEditing - This event is fired when the user is ediing a cell and it is similar to textbox component onChanging event. Event listeners are provided with EditboxEditingEvent on receiving this event.


Cell Change events