I need to set a custom style not for all, but some columns in a nattable. I can't set the configuration like this:
natTable.addConfiguration(new DefaultNatTableStyleConfiguration());
because this sets the configuration to the whole table. I have to override the configuration only to specific columns. In my case the columns should have the horizontal align set like this:
setHAlign(HorizontalAlignmentEnum.RIGHT);
How can I achieve this? Thanks!