Documentation

datatype

the type of loaded data

string datatype;

Values

  • JSON (default)
  • XML
  • JSArray
  • CSV
  • Example

    webix.ui({
        view:"datatable",
        url:"data.xml",
        datatype:"xml"
    });

    See also

    Details

    With JSON data type you can omit this property.

    Back to top