I need to add a blank to the drop list of the keyword

Hi ,

how can I add a blank to the list, I tried adding a “” in front of the code but it did not work.

@DbColumn(“” : “NoCache” ; “” ; “Role1”; 3): @DbLookup(“”; “”; “Parmt”; “Group DFD”; 5)

I tryied

test := @DbColumn(“” : “NoCache” ; “” ; “Role1”; 3): @DbLookup(“”; “”; “Parmt”; “Group DFD”; 5)

test : “”

any ideas

thanks

Alena

Subject: I need to add a blank to the drop list of the keyword

Use a space not a empty string :

test:" "

not

test:“”

Hope this helps

Renaud

Subject: RE: I need to add a blank to the drop list of the keyword

yes that is right, but the value " " stay in the field value, I need it to be empty as well

thanks

Subject: RE: I need to add a blank to the drop list of the keyword

You mean the value into the field when you save a document ?

If that’s the case, just add this formula in the input translation of your field :

@trim(@ThisValue)

This will remove leading and trailing spaces when you save the document => if the space was selected it will become empty ! :wink:

Hope this helps

Renaud

Subject: RE: I need to add a blank to the drop list of the keyword

thanks alot Renaud