Join the Stack Overflow Community
Stack Overflow is a community of 6.6 million programmers, just like you, helping each other.
Join them; it only takes a minute:
Sign up

I am working on angular-datatables and trying to set responsive priority for last column according to datatables.net. In angular I wrote it in following way

vm.dtColumnDefs = [
        DTColumnDefBuilder.newColumnDef(-1).withOption('responsivePriority',1)
    ];

But the above code is not working. Am I missing something here?

share|improve this question

Solved it by updating responsive plugin from 1.0.1 to 2.1.0.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.