Kendo grid sortable column doesn't sort

2.7k Views Asked by At

I was create kendo grid with sortable: true property and turn off sorting for some columns by setting property sortable to false

    this._grid = $('#findResultsGrid').kendoGrid ({
                        sortable: true,
                    groupable: {
                        messages: {
                            empty: 'drag columns here'
                        }
                    },
                    scrollable: true,
                        columns:[
                            {
                                width: '100px',
                                title: 'Project',
                                field: 'PROJECT',
                                template: '<p style="' + defaultStyle + '">#=PROJECT#</p>'
                            },
                            {
                                width: '100px',
                                title: 'Well',
                                field: 'SLHOLENAME',
                                sortable: false,
                                template: '<p style="' + defaultStyle + '">#=SLHOLENAME#</p>'
                            },

...

But some columns without sort disabling (has no option sortable: false) not sortings and looks as not sortable

3

There are 3 best solutions below

0
On

Sorry, i found my own bug while prepared reproducing example - unsortable columns has not filled field property

0
On

Same problem. The field property of a column needs to be set for column sorting to work. Since:

columns.sortable: If set to true the user can click the column header and sort the grid by the column field when sorting is enabled.

0
On

Another case of this problem is when you have numerical fields if one of them is 0, it will be considered as not set.

To fix this, prefix an empty string to it to force its conversion to string:

field: '' + item.field,