JavaScript

{dialog.object}_persistFolder Method

Syntax

{dialog.object}._persistFolder();

Returns

folderNamestring

Returns the sub-folder where files are stored.

Description

Gets the sub-folder in which the files are actually stored. Returned folderName includes a trailing / character.

Discussion

For example, the fully qualified name of the file that contains all of the data in the List when the list is initially populated is therefore (assuming the List id is LIST1 and the UX Local Storage Namespace property was set to NS1):

Example

var fsLocation = {dialog.object}._persistFS();
var fileSystemFolder = {dialog.object}._persistFolder();

var fullListFilename = fsLocation + fileSystemFolder + "NS1.LIST.LIST1";

alert(fullListFilename);