Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
udaya_kumar
Specialist
Specialist

i want to hide the qlikview bar in qlikview server

Hi,

i want to hide the Bookmarks, lock all selections, unlock all selections, all this in the qlikview server.

i have attached the image, just check it.

i want to hide those things. how can i do that?

please help

5 Replies
Bill_Britt
Former Employee
Former Employee

Not sure if you are talking about the AJAX client or Plug-in. Below is for AJAX.

By default, you cannot prevent the AJAX client showing the toolbar.   However, if you want to prevent users seeing the toolbar you need to edit the opendoc.htm file.   This file can be found here: C:\Program Files\QlikView\Server\QlikViewClients\QlikViewAjax

Add the following text between the head and body of the htm file:
<style>
.QvToolbar
{
display:none;
}
</style>

Save the file.   Note this is not standard functionality and will be over written if you upgrade to a newer build.   Always document these kinds of changes so they can be implemented again after an upgrade!

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.
Clever_Anjos
Employee
Employee

If you´re using QV 11 or later, you can use a Document Extension to do that.

I´ve developed a simple extension.

You can download it at http://community.qlik.com/docs/DOC-3577

udaya_kumar
Specialist
Specialist
Author

Hi Clever,

Thanks for the reply,

I tried this, it works fine in Ajax.

But i want it for IE Plugin toolbar.

Clever_Anjos
Employee
Employee

I don´t if it is possible using plugin.
Maybe some key at settings.ini could do that

Bill_Britt
Former Employee
Former Employee

There is a registry setting can can do this, but you would have to touch each users machine. There isn't anything server side that will do it.

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.