This seem not working:
->parameters([
'columnDefs' => [
'targets' => -1,
'className' => 'text-right'
]
])
Any idea how to do this?
I think it should be array of arrays.
->parameters([
'columnDefs' => [
['targets' => [-1], 'className' => 'text-right']
]
])
Most helpful comment
I think it should be array of arrays.