Here's the scenario:
I have a jQuery script that loads DataTables, and I know how to set the "aoColumns" : "sWidth" parameter to fix the width of a specific column, which is working fine.
However, my issue arises from having multiple tables with varying numbers of columns, where I need the LAST column to always be a fixed size regardless of its position (e.g. 3rd, 8th, 16th).
Is this even achievable?
I want to avoid calling the datatable jQuery for each table and refrain from making any structural modifications since it currently works well; perhaps there's a way to add a class or parameters through Javascript instead.