[Solved] Prevnt sorting on a particular column in grid

2 Answers 29 Views
Grid Sortable
Jyothi
Top achievements
Rank 1
Iron
Iron
Veteran
Jyothi asked on 09 Jul 2026, 01:16 PM

Hi,

 

We have a requirement where we have to allow sorting on the kendo-grid column, but prevent on one of the column from sorting. I see that we have a

[sortable]="true" to allow sorting.

 

How can we set this but not allow sorting on a particular column?

 

Thanks,

Jyothi

2 Answers, 1 is accepted

Sort by
0
Jyothi
Top achievements
Rank 1
Iron
Iron
Veteran
answered on 09 Jul 2026, 01:44 PM
I think I found the answer searching the web. We can set the same property on the columns itself.
0
Vessy
Telerik team
answered on 14 Jul 2026, 08:54 AM

Hello, Jyothi,

To allow sorting on all columns except a specific one in the Kendo UI for Angular Grid, you can set [sortable]="true" on the grid, and then set [sortable]="false" on the column you want to exclude from sorting. Here’s how you can do it:

<kendo-grid [data]="gridData" [sortable]="true">
  <kendo-grid-column field="ProductName" title="Product Name"></kendo-grid-column>
  <kendo-grid-column field="Category" title="Category" [sortable]="false"></kendo-grid-column>
  <kendo-grid-column field="Price" title="Price"></kendo-grid-column>
</kendo-grid>

You can find more details in the documentation:

Let me know if you have any other questions or need further customization.

    Regards,
    Vessy
    Progress Telerik

    Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

    Tags
    Grid Sortable
    Asked by
    Jyothi
    Top achievements
    Rank 1
    Iron
    Iron
    Veteran
    Answers by
    Jyothi
    Top achievements
    Rank 1
    Iron
    Iron
    Veteran
    Vessy
    Telerik team
    Share this question
    or