Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi experts!
there is any way to hide some field and not show in the panl of actual selection?
i want that the user do not see one only field is sielected or not
thank you a lot
Fernando
Set Hide Prefix is the answer
Fields that are tagged as $hidden will not display in the Current Selections box. You can make fields hidden in two ways in the script.
1. Set the HidePrefix or HideSuffix QV variables.
SET HidePrefix=_; // Any field beginning with _ will be hidden
2. Tag the field with $hidden
TAG myfield WITH $hidden;
-Rob
here is a guide on hiding prefix
Rob Thank you for your answer,
my problem is that if i put the field as a hidePrefix, the field will not apear in my model, and i want the field in the model,
this field manage all about the lenguage of the aplication, and i do not want to the user see in the selection box
"languague": spanish or english
thank you a lot and the other answer, any solution would be great!
Fernando
A hidden field is still part of your model. It will appear in your field selection lists if you check "Show Hidden Fields", like for example, on the "Select Fields" dialogue
-Rob