Wijmo UI for the Web
loadSettings Field
wijmo.appview.wijappview Namespace > options type : loadSettings Field

Determines the page load settings so that you can customize the way pages are downloaded.

Type: wijmo.appview.ILoadSettings object

Default:

{
    type: "GET",
    data: undefined,
    showLoadMsg: false
}
Syntax
var value; // Type: ILoadSettings
value = wijmo.appview.wijappview.options.loadSettings;
var loadSettings : ILoadSettings;
Example
$("#appview").wijappview({
    loadSettings: {
            type: "post",
            showLoadMsg: true
        }
});
See Also

Reference

options type