Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
How to SHOW HIDE FIELDS IN CURRENT SELECTION BOX? Is there any workaround?
Thanks in advance.
Maybe try this
TAG FIELD fieldname with '$hidden';
using HidePrefix/HideSuffix
In the script define the HidePrefic like below:
SET HidePrefic = '_' ;
So all the fields starting with '_' wille be treated as the System Fields and ignored in the current selections box.
Thanks for updates, but i am looking for fields which are hidden to be showed in the current selection box..
Hi
Please use the below in edit script window
SET HIDEPREFIX='%';
LOAD * Inline [
%Product,Sales
Apple,100
Nokia,200 ];
Thanks
Satish
One of the main reasons for hiding a field is so that it does not show in current selections. So no, there is no way to display hidden fields in a current selection box.
This might not be possible using Current Selection Box. However, you can try to create your own space of current selection values in a different manner. You can use GetFieldSelections(hiddenField) to display the values in a text box or so. You may refer:Current Selection Alternatives
Hi,
In that rename the column names so that it won't hide in the Current selections.
For example
SET HIDEPREFIX='%';
LOAD * Inline [
%Product,Sales
Apple,100
Nokia,200 ];
SET HIDEPREFIX='%';
LOAD * Inline [
%Product,Sales
Apple,100
Nokia,200 ];
Now %Product won't display in Current selections if selected, now rename %Product to Product to display in Current Selections box.
Hope this helps you.
Regards,
Jagan.