Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everyone,
I have been happily using the Vizualisation API's create method to create various visualizations on the fly. However, I notice that the Filter pane (list used to filter the data) is missing from the list of available visualization types. Does anyone know whether there is another way of creating a filter pane?
Regards,
Richard
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')
})
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')
})
Thanks Ralf, (and thanks to undocumented features ) that really helped. I used a slightly different syntax,but the same end result.
app.visualization.create('listbox',["MS"],
{"title":"MS"}
).then(function(vis){
vis.show("QV15");
});
Do i need to change code for html as well?
Does anyone know how to create a filter box popup which has the search already active? I am trying to replicate the functionality that qlik has in the tables and in the filter pane and I cannot find a way to make the search always visible.
Hi when integrating two applications together can I use filter pane from the first application to be used for my secondary application (like a common filter)