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: 
mgranillo
Specialist
Specialist

Hidden Selections Applied

I've never seen the selections bar say hidden selections applied.  Any idea what's driving this functionality?

Capture.PNG

1 Solution

Accepted Solutions
rubenmarin

Hi Michael, fields can be set as hidden using HidePrefix or HideSuffix, ie:

SET HidePrefix='__'; // Fields starting with "__" will be set as hidden.

testData:

LOAD *  Inline [

__HiddenField

TestValue

];

Selections in __HiddenField will shows that message instead of the field and the selected values as it does with a "normal" field.

View solution in original post

2 Replies
isingh30
Specialist
Specialist

Do we have section access in the script? This has to do with the security.

Thanks.

rubenmarin

Hi Michael, fields can be set as hidden using HidePrefix or HideSuffix, ie:

SET HidePrefix='__'; // Fields starting with "__" will be set as hidden.

testData:

LOAD *  Inline [

__HiddenField

TestValue

];

Selections in __HiddenField will shows that message instead of the field and the selected values as it does with a "normal" field.