Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
jvishnuram
Partner - Creator III
Partner - Creator III

How restrict some options in access point while pressing the right click?v

Hi Friends,

Can anyone tell me that, How restrict some options in access point while pressing the right click.,

(ie..) i need only the following options.,

1. Back,

2. Show/Hide notes,

3. Bookmark (add/remove) ,

4. Mail with bookmark as a link.

Labels (1)
1 Solution

Accepted Solutions
ergustafsson
Partner - Specialist
Partner - Specialist

Hi Vishnu,

Have a look at this extension: Document Extension Solution to hide buttons on the AJAX toolbar...and anything else . Let me know if it helps.

Regards,

Erik

View solution in original post

16 Replies
ergustafsson
Partner - Specialist
Partner - Specialist

Hi Vishnu,

Have a look at this extension: Document Extension Solution to hide buttons on the AJAX toolbar...and anything else . Let me know if it helps.

Regards,

Erik

jvishnuram
Partner - Creator III
Partner - Creator III
Author

Hi Erik,

Thank you so much for your answer, I wanted to know where i can get the class name for the rest of all (Properties..,Clear All Selections, etc..).

jvishnuram
Partner - Creator III
Partner - Creator III
Author

Hi Erik,

I got the result thanks for your valuable reply.

Not applicable

Hello, I try to do the same thing. How do you make it ? thanks

Bill_Britt
Former Employee
Former Employee

Hi,

Fiddler is a big help to see that.

Bill

Bill - Principal Technical Support Engineer at Qlik
To help users find verified answers, please don't forget to use the "Accept as Solution" button on any posts that helped you resolve your problem or question.
jvishnuram
Partner - Creator III
Partner - Creator III
Author

Hi Sabrina,

What function you want to restrict?

Not applicable

I want to desactivate th print function and the export to excel function

jvishnuram
Partner - Creator III
Partner - Creator III
Author

Hi Sabrina,

Use this code in your script and put that extension in your server it will solve your problem.,

TEMP:

LOAD * INLINE [

    ClassName, Name, Display

    ctx-menu-action-PR, Print, Y  

    ctx-menu-action-XL, Excel, Y

];

ClassNames:

LOAD

  Concat(ClassName, ',') AS AllClassNames

;

LOAD ClassName,

     Name,

     Display

Resident TEMP

WHERE Display = 'Y';

LET vToolbarClass = peek('AllClassNames', 0, 'ClassNames');

Not applicable

Thanks for the code. but it doesn't work.

I install the extension in the following field : C:\ProgramData\QlikTech\QlikViewServer\Extensions

and I double-click on the extebsuib hideIt.

In my document, I activate the extension and put the script  after my bianry load.

When I published the application on the AccessPoint, the print function and Send to Excel function are present in the pop up appearing with a right click.

Can you send me your procedure  or your qlikview document ?