Versions Compared

Key

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

...

Switches the component out of edit mode into display mode, updating the displayed text with the current content of the edit field. Calls the finishedEditing function provided in the options, if it exists.

Code Block
javascript
javascript

fluid.inlineEdit.render(source);

Prompts the component to render itself.

Code Block
javascript
javascript

fluid.inlineEdit.tooltipEnabled();

Returns a boolean indicating whether or not the tooltip is enabled.

Code Block
javascript
javascript

fluid.inlineEdit.updateModel(newValue, source);

Updates the component's internal representation of the text to a new value. The component will be re-rendered.

...

Creating Multiple Inline Edits

...