Inline Edit Configuration Options - v0.5
Name |
Description |
Values |
Default |
---|---|---|---|
|
Javascript object containing selectors for various fragments of the Inline Edit component. |
The object can contain any subset of the following keys: |
selectors: { text: ".text", editContainer: ".editContainer", edit: ".edit" } |
|
Javascript object containing CSS style names that will be applied to the Inline Edit component. |
The object can contain any subset of the following keys: |
styles: { invitation: "inlineEdit-invitation", defaultViewText: "inlineEdit-invitation-text", tooltip: "inlineEdit-tooltip", focus: "inlineEdit-focus" } |
|
Javascript object containing pixel values that will configure the size of the edit field. |
The object can contain any subset of the following keys: |
paddings: { edit: 10, minimumEdit: 80, minimumView: 60 } |
|
A function that will be called each time the Inline Edit component leaves edit mode. This function can be used to communicate changes in the field to the server, or to take any other action desired by the implementor. |
a function |
undefined |
|
A function that creates the editable field based on the display text. This function is used if no edit container is provided in the markup. |
a function that returns an object of the following form: return { container: editContainer, field: editField };
|
a function that creates the edit field based on the following template: <span> <input type='text'/> </span> |
|
Indicates whether or not to automatically select the editable text when the component switches into edit mode. |
boolean |
|
|
The default text to use when filling in an empty component. Set to empty to suppress this behaviour |
string |
"Click here to edit" |
|
Indicates whether or not the component should display a custom ("invitation") tooltip on mouse hover |
boolean |
|
|
The text to use for the tooltip to be displayed when hovering the mouse over the component |
string |
"Click item to edit" |
|
The id to be used for the DOM node holding the tooltip |
string |
"tooltip" |
|
The delay, in ms, between starting to hover over the component and showing the tooltip |
number |
2000 |