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
If you have not checked yet, be sure to visit site of our main product Webix open source html5 framework and page of datatable js product.