[Request] Use minColumnWidth with the adjust property in a datatable column

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()

You can override this behavior in custom datatable. Overriding default behavior is also possible, but it is a bit complex.

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.

It makes sense. We will add such feature in the next version (4.1).