- A,A-Value
- B,B-Value,1
- C, ,
- D
|
|
# edit this page and compose the lists into the UL/LI layout on the left side
# the top list is mapping to the outest UL, which has an ID of "CS"
# each option is mapping to a LI element
# if an option has sub-list, the sub-list is mapping to a nested UL
# the content of a LI element could be:
- text ... <option value="text">text</option>
- text, , ... <option value="">text</option>
- text,value ... <option value="value">text</option>
- text,value,1 ... <option value="value" selected>text</option>
- text,,1 ... <option value="text" selected>text</option>
- text, ,1 ... <option value="" selected>text</option>
# the separator (,) is defined in the parser.js and can be changed
# once you have the UL/LI layout representing the structure of your lists
# fill in the name of the list group and click the [ Parse ] button
# then save the output as the list group content
# or you can click the [ Show ] button to preview the lists
|