Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

loading Icon to be at center

Is it possible to make loading icon to center instead of having top right corner of accesspoint?

Labels (2)
1 Solution

Accepted Solutions
phaneendra_kunc
Partner - Specialist III
Partner - Specialist III

Only way you can do that by tweaking below property in default.css

CSS Location:

C:\Program Files\QlikView\Server\QlikViewClients\QlikViewAjax\htc

Adjust below style properties

#InitialLoader{float:right;line-height:22px}

Another location is in opendoc.htm file.

OpenDoc Location:

C:\Program Files\QlikView\Server\QlikViewClients\QlikViewAjax

here is the code block that refers when app is being loaded.

<div id="InitialLoader" >

  <img alt="" src="/QvAjaxZfc/htc/Images/Working.gif"/>

  <span class="ctx-menu-text">Loading...</span>

  </div>

View solution in original post

1 Reply
phaneendra_kunc
Partner - Specialist III
Partner - Specialist III

Only way you can do that by tweaking below property in default.css

CSS Location:

C:\Program Files\QlikView\Server\QlikViewClients\QlikViewAjax\htc

Adjust below style properties

#InitialLoader{float:right;line-height:22px}

Another location is in opendoc.htm file.

OpenDoc Location:

C:\Program Files\QlikView\Server\QlikViewClients\QlikViewAjax

here is the code block that refers when app is being loaded.

<div id="InitialLoader" >

  <img alt="" src="/QvAjaxZfc/htc/Images/Working.gif"/>

  <span class="ctx-menu-text">Loading...</span>

  </div>