Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Name

Description

Values

Default

selectors

Javascript object containing selectors for various fragments of the Inline Edit markup

 

Code Block
javascript
javascript
selectors: {
    text: ".text",
    editContainer: ".editContainer",
    edit: ".edit"
}

styles

 

 

Code Block
javascript
javascript
styles: {
    invitation: "invitation",
    focus: "focus"
}

paddings

 

 

Code Block
javascript
javascript
paddings: {
    add: 10,
    minimum: 80
}

finishedEditing

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

Code Block
javascript
javascript
finishedEditing: function () {
};

...

Functions

Code Block
javascript
javascript
fluid.InlineEdit.edit();

...