Would it be possible to have the minColumnWidth still enforce when using the adjust property on a datatable column? This can be achieved by just adding:
max = max < config.minColumnWidth ? config.minColumnWidth : max;
to the line before the return statement in _getColumnConfigSize()
Yeah I’m currently doing that, I just was wondering if it can be added as default functionality so I don’t have to worry about it when I upgrade. Also it might be something others find helpful.