I understand you can add class ids to ExtJS components using the addCls method like so
this.myGrid.addCls('MyGrid');
can this be added as a constructor property? I want to add class ids to columns, however it would be nice to add this at construction time like so :
{
dataIndex: 'packageName',
text: 'Name of Packet',
width: 300,
filter: {
type: 'string'
}
IsThereSomKindOfAddCLsEquivalent : 'packageName'
}