Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
subash29
Contributor III
Contributor III

Toggling the touch screen mode default to off in Qliksense

Hi All,

In QlikSense Application we have new features to touch screen mode to on and off for user end.But our client does not want the touch mode to off every time  when using touch devices(like  laptop,mobile etc).

we have seen in mashup scripts to off the touch mode query(it helps web application URL). but we need to off mode by default in QlikSense URL.so that user no need to do the touch off mode.

Please provide valuable suggestions..

-Subash 

 

Labels (2)
1 Solution

Accepted Solutions
johannesholzer
Contributor III
Contributor III

We solved that issue by having a custom login when entering Qlik.

It executes in Javascript:


window.localStorage.setItem("localstorageservice.deviceType", '{"value":{"value":"desktop"}}');

View solution in original post

4 Replies
johannesholzer
Contributor III
Contributor III

We need that functionality as well.

Is this possible or planned in any way?

sri_c003
Partner - Creator II
Partner - Creator II

We too need a way to force touch off - some of our customers want touch to be always off irrespective of the type of screen they use.

Is there any way we could change some configuration file or add a rule or such that would help disable touch.

johannesholzer
Contributor III
Contributor III

We solved that issue by having a custom login when entering Qlik.

It executes in Javascript:


window.localStorage.setItem("localstorageservice.deviceType", '{"value":{"value":"desktop"}}');

sri_c003
Partner - Creator II
Partner - Creator II

This actually worked, thank you! Need to do more testing on this to make sure it works all the time.