Nowadays there's only the Template column type in Bryntum grid to allow us to inject some CSS to have a specific look and feel for, e.g., read only columns. Would you consider having all the other column types able to get a custom CSS, please?
Thanks a lot!
Support Forum
Hey jcantos,
Perhaps you could use https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-cellCls or https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-cls.
Also, if you don't want to use CSS classes, you can use https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-renderer and change the style inside the renderData
parameter, like the example:
renderer(renderData) {
renderData.cellElement.style = 'align-items: start';
}
Best regards,
Márcio