I am using Angle and Datatables. I'm trying to freeze my table's first column, to do that, I have imported the datatables.fixedColumns (if I check on the generated base.js the plugin is there), but I'm still getting the following error:
c.fn.dataTable.FixedColumns is not a constructor
I am calling the plugin with this:
DTOptionsBuilder.newOptions()
.withPaginationType('full_numbers')
.withOption('searching', true)
.withOption('scrollY', "400px")
.withFixedColumns({leftColumns: 1})
Anyone has an idea about what might be happening?