delimiter

sets CSV delimiters for clipboard operations

object delimiter;

Example

webix.ui({
    view:"datatable",
    delimiter:{
        rows:"\n", // the rows delimiter
        cols:","   // the columns delimiter
    },
    ...
});

Details
  • The default rows delimiter - '\n' (new-line character)
  • The default columns delimiter - '\t' (horizontal tab )


You can change delimiters globally by setting webix.csv.delimiter.rows and webix.csv.delimiter.cols properties.

webix.csv.delimiter.rows = "\b";
webix.csv.delimiter.cols = "\v";
See also
Back to top
Join Our Forum
We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.
If you have not checked yet, be sure to visit site of our main product Webix html5 ui library and page of js xlsx product.