Interface SaveSessionViewOptions

interface SaveSessionViewOptions {
    containerPath?: string;
    failure?: RequestFailure<any>;
    hidden?: boolean;
    inherit?: boolean;
    newName?: string;
    queryName?: string;
    replace?: boolean;
    schemaName?: string;
    scope?: any;
    shared?: boolean;
    success?: RequestSuccess<any>;
    viewName?: string;
}

Hierarchy (view full)

Properties

containerPath?: string
failure?: RequestFailure<any>

This will be called upon failure to complete a request.

hidden?: boolean

If the new view should be hidden, default false

inherit?: boolean

If the new view is accessible from child container, default false

newName?: string

The new non session view name that would replace the session view

queryName?: string
replace?: boolean

Replace an existing non-session view if the newName already exist for another view

schemaName?: string
scope?: any

A scoping object for the success and failure callback functions (default to this).

shared?: boolean
success?: RequestSuccess<any>

This will be called upon successfully completing a request.

viewName?: string

The session view name

Generated using TypeDoc