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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Hide objects on access point

Hey community

Is it possible to create a text object which is not shown to the users on the access point?

/Michael

1 Solution

Accepted Solutions
petter
Partner - Champion III
Partner - Champion III

You can use a conditional show for the Text Object and use an expression like this:

=Not( ClientPlatform() Like 'Browser.*' )

If you want to hide it from mobile clients too you can do this:

=Not( ClientPlatform() Like 'Browser*' OR ClientPlatform() Like 'Mobile.*' )

View solution in original post

3 Replies
petter
Partner - Champion III
Partner - Champion III

You can use a conditional show for the Text Object and use an expression like this:

=Not( ClientPlatform() Like 'Browser.*' )

If you want to hide it from mobile clients too you can do this:

=Not( ClientPlatform() Like 'Browser*' OR ClientPlatform() Like 'Mobile.*' )

Anonymous
Not applicable
Author

Hej Petter.

ClientPlatform() = '' seems to be working when I want to NOT show the object on the access point.

Tak!

petter
Partner - Champion III
Partner - Champion III

Takk

Please close the thread by marking it as answered ....