Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello.
I want that the current selections object show only fields, and won't show the variables.
How can i do that?
Thank you!
I don't think that current selection box show variables by default.
Best,
S
Sunindia is right.
And you can use hideprefix to hide fields from the current selections box
Thanks giakoum for confirming it. For a second I was puzzled if the current selection box ever showed variables also.
Best,
S
I see that now, thank you.
how can i hide fields i don't need?
SET Hideprefix = '%';
not let
Within your script right this:
SET HidePrefix = %;
and then rename all the fields you don't want to show up on current selection box to have % in front of them:
City as %City
HTH
Best,
S
Hahahaha, ya you are right, just figured it out.
Thank you both!
You can also tag any field with $hidden in the script.
TAG FIELD MyField WITH '$hidden';'
-Rob