...
The options
parameter is an optional collection of name-value pairs that configure data structure that configures the Inline Edit component(s), as described below in the Options section.
...
Event | Type | Description | ParametersDefault | ListenerParameter Description |
---|---|---|---|---|
| default | This event is fired any time the model for the component has changed, that is, any time the value of the text associated with the component has changed. |
|
|
| "preventable" | This event fires just before the component switches from 'view' mode into 'edit' mode. Because the event is preventable, listeners may prevent the component from actually entering edit mode. | none | |
| default | This event fires just after the component has finished entering 'edit' mode. | none | |
| "preventable" | This event fires just before the component switches out of 'edit' mode, i.e. before the newly edited value is stored in the model. Because the event is preventable, listeners may prevent the new value from being stored in the model, i.e. they may cancel the edit. |
|
|
| default | This event fires just after the newly edited value is stored in the model. Note that it only fires if the | |
|
...
Functions
Code Block | ||||
---|---|---|---|---|
| ||||
fluid.inlineEdit.edit(); |
...