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.

Temporary Settings Store


The Temporary Settings Store subcomponent is used by UI Enhancer to store/save user preferences temporarily, without persistence. This store may be useful for testing situations. For a settings store that persists, use the Cookie Settings Store.

Do not use this component directly. The information on this page should be use when customizing UI Enhancer.

See Also
UI Enhancer
Cookie Settings Store

Supported Events

none

Methods

get()
Retrieves the current settings from the cookie.


set(settings)
Saves the specified settings in the cookie.

Methods

back to top

get()

Description

Retrieves the current settings stored in the cookie.

ParametersNone

Return value

The currently stored settings.

Availability

Infusion 1.4 and later

See also

set(settings)

set(settings)

 

Description

Stores the specified settings in the cookie.

Parameters

settings
A settings to be stored. It could be any data type.

Return value

None

Availability

Infusion 1.4 and later

See also

get()