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

_changeApplierOptions option description

Description

Options that will be passed on to fluid.makeChangeApplier() if a ChangeApplier is not provided using the #applier option.

Notes

If a ChangeApplier is provided using the #applier option, this option will be ignored.

Example Definition

fluid.defaults("component.name", {
    model: {...},
    changeApplierOptions: {
        cullUnchanged: true
    },
    ...
});

Example Override

var myComp = component.name(container, {
    model: {...},
    changeApplierOptions: {
        cullUnchanged: true
    },
    ...
});

See also

ChangeApplier API
#model
#applier