fires when a column is initialized
column | object | the object with a column configuration |
webix.ui({
view:"spreadsheet",
toolbar:"full",
data:spreadsheet_data,
on:{
onColumnInit: col => {
col.header.text = "text "+ col.id;
}
}
});
Back to top