Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
vikas_ksharma
Contributor
Contributor

Right Click on QLIK Sense Extension

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 ?

8 Replies
dannyy81
Contributor III
Contributor III

i can help 

send me the extension 

ajaykakkar93
Specialist III
Specialist III

hi,

you can make a example extension like list box with the right click options as example, this will help in better understanding.

Regards,

Ajay Kakkar

Please mark the correct replies as Solution. Regards, ARK
Profile| GitHub|YouTube|Extension|Mashup|Qlik API|Qlik NPrinting

dannyy81
Contributor III
Contributor III

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;

});

 

dannyy81
Contributor III
Contributor III

on rendering the visualization you add the following attributes:

 

 

return {
definition: props,
support : {
snapshot: true,
export: true,
exportData : true
},

 

ajaykakkar93
Specialist III
Specialist III

Hi,

i think user is asking about adding more options to existing popout

Please mark the correct replies as Solution. Regards, ARK
Profile| GitHub|YouTube|Extension|Mashup|Qlik API|Qlik NPrinting

dannyy81
Contributor III
Contributor III

if its not qlik reuse asset then you have to build it yourself 

ajaykakkar93
Specialist III
Specialist III

Do you have a example for that?

Please mark the correct replies as Solution. Regards, ARK
Profile| GitHub|YouTube|Extension|Mashup|Qlik API|Qlik NPrinting

dannyy81
Contributor III
Contributor III

you have to be more specific and send  an example of your own