Skip to main content Skip to complementary content

openApp method

qlik.openApp(appId, config)

Method used to open a Qlik Sense app. You can open multiple apps. Most other methods are defined on the app.

See: qlik.app

Since:
  • 1.0

Parameters

Name Type Description
appId String The app id
config Object

Optional.

Additional configuration parameters:

Name Type Attr Descr
host String <optional> Qlik host.
port String <optional> Port number.
prefix String <optional> Qlik virtual proxy. "/" if no proxy.
isSecure Boolean   Use SSL.
openWithoutData Boolean <optional>

Open app without loading data.

This parameter was introduced in version 1.1.

identity String <optional> Unique identity for the session. If omitted, the session will be shared.

Returns

App JavaScript object with app methods.

See: qlik.app

Example

var app = qlik.openApp('2abac31e-3b46-4b78-8bxf-c5cea1d2514d');
var config = {
	host: "myhost.com",
	prefix: "/",
	port: window.location.port,
	isSecure: true
};
var app2 = qlik.openApp('c31e2aba-3b46-4b13-8b87-c5c2514dea1d', config);

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!