dojox.storage.AirFileStorageProvider
dojo.require("dojox.storage.AirFileStorageProvider");
defined in dojox/storage/AirFileStorageProvider.js
Usage
function ()
FunctionsBack to top

Overrides dojox.storage.Provider
Completely clears this storage system of all of it's values and keys. If 'namespace' is provided just clears the keys in that

Overrides dojox.storage.Provider
Object Gets the value with the given key. Returns null if this key is not in the storage system.

Overrides dojox.storage.Provider
Array Enumerates all of the available keys in this storage system. return: Array of available keys

Overrides dojox.storage.Provider
Object Gets the valuse corresponding to each of the given keys. Returns a null array element for each given key that is not in the storage system.
Overrides dojox.storage.Provider
Defined by dojox.storage.Provider
Array[] Returns a list of URLs that this storage provider might depend on.
Defined by dojox.storage.Provider
Determines whether the storage has the given key.
Overrides dojox.storage.Provider
Boolean Determines whether this provider has a settings UI.
Overrides dojox.storage.Provider
Allows this storage provider to initialize itself. This is called after the page has finished loading, so you can not do document.writes(). Storage Provider subclasses should initialize themselves inside of here rather than in their function constructor.
Overrides dojox.storage.Provider
Boolean Returns whether this storage provider is available on this platform.
Overrides dojox.storage.Provider
Boolean Returns whether this storage provider's values are persisted when this platform is shutdown.
Defined by dojox.storage.Provider
Boolean Subclasses can call this to ensure that the key given is valid in a consistent way across different storage providers. We use the lowest common denominator for key values allowed: only letters, numbers, and underscores are allowed. No spaces.

Defined by dojox.storage.Provider
Defined by dojox.storage.Provider
If a function is assigned to this property, then when the settings provider's UI is closed this function is called. Useful, for example, if the user has just cleared out all storage for this provider using the settings UI, and you want to update your UI.

Overrides dojox.storage.Provider
Puts a key and value into this storage system.

Overrides dojox.storage.Provider
Puts multiple keys and values into this storage system.

Overrides dojox.storage.Provider
Removes the given key from this storage system.

Overrides dojox.storage.Provider
Removes the given keys from this storage system.
Overrides dojox.storage.Provider
If this provider has a settings UI, determined by calling hasSettingsUI(), it is shown.
PropertiesBack to top
Defined by dojox.storage.Provider
The namespace for all storage operations. This is useful if several applications want access to the storage system from the same domain but want different storage silos.
Defined by dojox.storage.Provider
Flag that indicates a put() call to a storage provider failed.
Defined by dojox.storage.Provider
Flag that indicates a put() call to a storage provider is pending user approval.
Defined by dojox.storage.Provider
Returned by getMaximumSize() if this storage provider can not determine the maximum amount of data it can support.
Defined by dojox.storage.Provider
Returned by getMaximumSize() if this storage provider has no theoretical limit on the amount of data it can store.
Defined by dojox.storage.Provider
Flag that indicates a put() call to a storage provider was succesful.