Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Document Field event trigger not working in web view or access point

I created a very simple test document with two sheets and the following table:

TestTable:

load * inline [

%order

first

second

];

The first sheet has a single Text Object which has an Action that executes Select In Field  %order the value 'first'.

I then set up Document Field Event Triggers on Set and Change of %order to Activate the second sheet.

Very simple, and it works perfectly in the QlikView desktop, however when I switch to Web View or Access point, the Field Event Triggers don't fire

even though I can see that the field value is being selected.

Any ideas why this doesn't work outside of the desktop environment?

Thanks,

Steve

2 Replies
Anonymous
Not applicable
Author

i have the same issue... does anybody help us?

pgrenier
Partner - Creator III
Partner - Creator III

Hello Steven,

I've been using a workaround which consists in using a variable that is being set according to my needs. As such, for your case, you could have a variable called vShowFirstTab which could be set to 1 if Only(%order)='first' or 0 otherwise.

Then, in the sheet propreties, you may define the Show Sheet proprety to Conditional, with $(vShowFirstTab)=1

On your Text object, you can then add an extra action in which you set the vShowFirstTab variable to the appropriate value depending on the case.

Hope this helps, regards,

Philippe