Documentation for a historical release of Infusion: 1.3
Please view the Infusion Documentation site for the latest documentation.
If you're looking for Fluid Project coordination, design, communication, etc, try the Fluid Project Wiki.

Layout Customizer Configuration Options

This page exists to serve as the source for an excerpt that will place the following table in multiple pages.

Name

Description

Values

Default

layout

Javascript object. For information about the structure of this object, see Tutorial - Layout Reorderer Selectors.

var layout = {
    id: <id of container>,
    columns: [
        {
           id:<id of column>,
           children: [<id of module>, <id of module>...]
        },
        {
           id:<id of column>,
           children: [<id of module>, <id of module>...]
        },
             ...
    ]
};

none

afterMoveCallbackUrl

If an URL is provided with this option, the current state of the component model will be sent to that URL after a move is carried out.

an URL

none

acquireModel

Valid only when the afterMoveCallbackUrl option is provided. acquireModel is a function that returns a Javascript object representing the model for the component. The model will be converted to a JSON string and sent to the URL specified by the afterMoveCallbackUrl option.

a function

none