map

defines data mapping

WebixDataMap map;

Example

webix.ui({
    view:"datatable",
    map:{
        name:"#firstname# #lastname#",
        birth:"(date)#birthdate#"
    },
    columns:[
        { id:"name", header:"User name" },
        { id:"birth", header:"Date of birth"}
    ],
    data:[
        { id:1, firstname:"Adam", lastname:"Smith", birthdate:new Date(1985, 1, 1) },
        { id:2, firstname:"Tom", lastname:"Brown", birthdate:new Date(1986, 2, 2) },
    ]
});

Details

For details, check Data Mapping

Back to top
If you have not checked yet, be sure to visit site of our main product Webix javascript ui library and page of javascript datagrid library product.