How to add multiple attributes to a dictionary entry?

Droid101
Kilo Explorer

I'm trying to get both of these into my "caller_id" entry:

ref_auto_completer=AJAXTableCompleter,ref_ac_columns=user_name;email,ref_ac_order_by=name
ref_contributions=user_show_incidents

However, I don't know what to separate them with. No matter what I use (commas, semicolons), only the first attribute functions.

2 REPLIES 2

CapaJC
ServiceNow Employee
ServiceNow Employee

Should just be a comma, no spaces. I've never seen that not work. The first one is actually three separate attributes separated by commas. So to add the fourth:
ref_contributions=user_show_incidents,ref_auto_completer=AJAXTableCompleter,ref_ac_columns=user_name;email,ref_ac_order_by=name


Hm, you're right. I wonder if maybe I just had a space in there or something, previously.

Thank you!