map
defines data mapping
let map: WebixDataMap
Example
Section titled “Example”webix.grid({ 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
Section titled “Details”For details, check Data Mapping