📅  最后修改于: 2022-03-11 14:55:32.387000             🧑  作者: Mango
webix.ui({
view:"datatable",
onClick:{
"rank_header" : function (event, column, target) {
webix.message("Click on header");
}
},
columns:[
{ id:"rank", header:{ css:"rank_header", text:"Click me!" }, width:100 },
{ id:"title", header:"Film title", width:200},
// more columns
]
});