separator

a delimiter for separating multiple dates in the datepicker

string separator;

Example

webix.ui({
  view:"datepicker",
  id:"i1", 
  value:"2016-1-14, 2016-1-16, 2016-1-18",
  multiselect:true,
  separator:" ~ "
});


Default value:

", "
Details

The default separator for datepicker values is comma.

Back to top