How to add multiple attributes to a dictionary entry?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-28-2010 09:47 AM
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.
- Labels:
-
Incident Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-28-2010 09:59 AM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-28-2010 10:00 AM
Hm, you're right. I wonder if maybe I just had a space in there or something, previously.
Thank you!