Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
would it be possible to hide some selection in the task barre ?
The use case is the following
For language I have a reduction linked to the user. Admin can choose the langage but most uses can only use the one selected for them It does not need to show in the task barre
Gilles
Hi @gpizzetta , you can hide the fields using Hide Prefix.
So you can set a variable:
SET HidePrefix = '';
If you only want to hide a single field, you could set it on the variable:
SET HidePrefix = 'langue';
If you want to hide multiple fields, you can set the variable to something more generic and rename your fields.
SET HidePrefix = '_';
Renaming Language → _Language and applying SET HidePrefix = '_' would keep it applied in the background but invisible to end users
Live and Breathe Qlik & AWS.
Follow me on my LinkedIn | Know IPC Global at ipc-global.com
Hi @gpizzetta
As @hugo_andrade mentions you can use hideprefix to solve this. You can also use HideSuffix with a similar approach, but then you add a pattern in the end of the field name.
A third option is to tag the field explicitly as hidden in the script , like this:
TAG FIELD your_field WITH $hidden;
Hi @gpizzetta , you can hide the fields using Hide Prefix.
So you can set a variable:
SET HidePrefix = '';
If you only want to hide a single field, you could set it on the variable:
SET HidePrefix = 'langue';
If you want to hide multiple fields, you can set the variable to something more generic and rename your fields.
SET HidePrefix = '_';
Renaming Language → _Language and applying SET HidePrefix = '_' would keep it applied in the background but invisible to end users
Live and Breathe Qlik & AWS.
Follow me on my LinkedIn | Know IPC Global at ipc-global.com
Hi @gpizzetta
As @hugo_andrade mentions you can use hideprefix to solve this. You can also use HideSuffix with a similar approach, but then you add a pattern in the end of the field name.
A third option is to tag the field explicitly as hidden in the script , like this:
TAG FIELD your_field WITH $hidden;
I tested both solutions and both worked
I choosed the TAG FIELD solution so I dont have to rename my fields that are already used in varables
Thanky you