doReload method
Information noteSTABLE.
This API is reliable and breaking changes are unlikely.
This API is reliable and breaking changes are unlikely.
qlik.app.doReload(qMode, qPartial, qDebug)
Reloads the data in a Qlik Sense app.
Version history
Version state | Details |
---|---|
Introduced | 1.1 |
Parameters
qMode
Type: String
Optional.
Error handling mode:
- 0 = default mode.
- 1 = attempt recovery on all errors.
- 2 = fail on all errors.
qPartial
Type: Boolean
Optional.
Set to true for partial reload.
qDebug
Type: Boolean
Optional.
Set to true if debug breakpoints are honored. Execution of the script will be in debug mode.
Returns
A promise of a Qlik associative engine reply.
Tip noteFor more information regarding a promise, see The Promise API.
Example
app.doReload().then(function(){
app.doSave();
});