Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Discussion board where members can learn more about Integration, Extensions and API’s for Qlik Sense.
Having same problem here.
Btw. a simple listbox (not a filterpane) can be created in that way (undocumented):
app.visualization.create('listbox', null, {
qListObjectDef: {
qDef: {
qFieldDefs: ['Month']
}
}
}).then(model => {
model.show('myDiv')
})