EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: sectioni on February 16, 2019, 01:14:08 PM



Title: Combobox - formatting selected values
Post by: sectioni on February 16, 2019, 01:14:08 PM
Hello,

When selecting multiple values i get this: "Value1,Value2,Value3"

How can I add a space after each comma?


Title: Re: Combobox - formatting selected values
Post by: jarry on February 18, 2019, 07:26:45 AM
You can set the 'separator' property with a wider char.
Code:
$('#cc').combobox({
multiple:true,
separator:', '
})