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
Join Our Forum
We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.