Dismiss
Announcing Stack Overflow Documentation

We started with Q&A. Technical documentation is next, and we need your help.

Whether you're a beginner or an experienced developer, you can contribute.

Sign up and start helping → Learn more about Documentation →

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.