onColumnInit

fires when a column is initialized

void onColumnInit(object column);
columnobjectthe object with a column configuration

Example

webix.ui({
  view:"spreadsheet",
  toolbar:"full",
  data:spreadsheet_data,
  on:{
    onColumnInit: col => {
      col.header.text = "text "+ col.id;
    }
  }
});

Back to top