Versions Compared

Key

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

...

The options parameter is an optional collection of name-value pairs that configure the Inline Edit component(s):

...

The options for the creation of multiple Inline Edits are the same as those for the creation of a single Inline Edit, with the addition of a selector for identifying the editable elements. The default selector is defined as follows:

...

, as described below in the Options section.

...

Supported Events

The Inline Edit component fires the following events:

Event

Type

Description

Default Listener

modelChanged

default

 

none

onBeginEdit

"preventable"

 

none

afterBeginEdit

default

 

none

onFinishEdit

"preventable"

 

none

afterFinishEdit

default

 

none

...

Functions

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

...

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

...

Anchor
optionsdesc
optionsdesc

Options

Insert excerpt
Infusion13:Inline Edit Configuration Options
Infusion13:Inline Edit Configuration Options
nopaneltrue

The options for the creation of multiple Inline Edits are the same as those for the creation of a single Inline Edit, with the addition of a selector for identifying the editable elements. The default selector is defined as follows:

Code Block
javascript
javascript

selectors: {
    editables: ".inlineEditable"
}

...

Skinning

This component can be skinned "out of the box" when you include our CSS skin files. Just be sure to put the following in you document:

...