Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a custom QLIK Sense Extension when user right click on that extension i want to add some of my options there in addition to what come by default in QLIK. Can code to add that option ?
i can help
send me the extension
i can not show you everything
but it goes something like this:
app.visualization.create(
'listbox',
[
vDimValue,//name of the field
],
{
"showTitles": true,
"qInitialDataFetch": [
{
"qHeight": 20,
"qWidth": 10
}
]
//"title": ''//filterTitle
}
).then(function(vis){
vis.show(elmentID)//elementid on the html file;
});
on rendering the visualization you add the following attributes:
return {
definition: props,
support : {
snapshot: true,
export: true,
exportData : true
},
if its not qlik reuse asset then you have to build it yourself
you have to be more specific and send an example of your own