Special characters in template

PL/SQL Developer version: 9.0.0.1601
Feature: templates

I need a restricted list and each item in the list has a comma. For example, say I would like a list with two items:

ABC,DEF
GHI,JKL

I'm defining the list like this:
[MyList="ABC,DEF","GHI,JKL"]

However in template wizard UI, I see 3 entries like this
ABC,DEF
GHI
JKL

What am I doing wrong?
 
Thanks Theod.

Your suggestion showed the second row (GHI,JKL) with comma in it. However it changed the combo box from a restricted list (i.e. user must choose one of the existing choices and can't enter his own choice) to suggestion list (user can choose from existing entries or write his own).

I tried this and got exactly what I needed (notice the extra comma at the end):
[MyList="ABC,DEF","GHI,JKL",]
 
Back
Top