Disable Column Arrange ASC - Desc on a Particular Table Column

Disable Column Arrange ASC - Desc on a Particular Table Column

SISCANSISCAN Posts: 3Questions: 1Answers: 0

Hi

It it possible to disable ASC/DESC on an individual table column ?

This question has an accepted answers - jump to answer

Answers

  • kthorngrenkthorngren Posts: 21,173Questions: 26Answers: 4,923
    Answer ✓

    Use columns.orderable for this.

    Kevin

  • SISCANSISCAN Posts: 3Questions: 1Answers: 0

    Kevin

    Thanks,

    I used script below and it worked, for Column 4 however, I am struggling with another column on the same table column 5, need to hide on both column 4 and 5 on the same table.

    Syntax: -

    "columnDefs": [{
    orderable: false,
    targets: 4
    }],

  • SISCANSISCAN Posts: 3Questions: 1Answers: 0

    OK, got it.

    "columnDefs": [{
    orderable: false,
    targets: [4, 5]
    }],

    Thank you.

This discussion has been closed.