This documentation is currently being moved to our new documentation site.

Please view or edit the documentation there, instead.

If you're looking for Fluid Project coordination, design, communication, etc, try the Fluid Project Wiki.

_applier option description

Description

A ChangeApplier object for the model provided with the #model option.

Notes

It is not necessary to provide an applier: By default, an applier will be created with fluid.makeChangeApplier(), using any options specified with #changeApplierOptions.

This option is most commonly used to share a common ChangeApplier between components in a component tree: the applier option can be used to reference the ChangeApplier of another component in the tree.

Example Definition

fluid.defaults("component.name", {
    applier: "{parentComponent.applier}",
    ...
});

Example Override

N/A

See also

ChangeApplier API
#model
#changeApplierOptions