separator

a delimiter for separating options in a multicombo

string separator;

Example

{
    view:"multicombo", 
    label:"Name", 
    labelPosition: "top",
    separator: "|",
    options:[
        { id:"The Godfather: Part II", value:"The Godfather: Part II"},
        { id:"The Good, the Bad and the Ugly", value:"The Good, the Bad and the Ugly"}
    ]
    ...
}


Default value:

","
Details

By default options IDs in a Multicombo separated by the "," symbol (comma). In case this separator is inappropriate for you (for example, values of ID in your data contain commas), you can set any other symbol.

See also
  • Articles
  • Back to top