I can sort the column menu in Kendo Grid using Jquery as following
<script>
$("#grid").kendoGrid({
columns: [
{ field: "name" },
{ field: "age" },
{ field: "city" }
],
**columnMenu: {
columns: {
sort: 'asc'
}
},**
sortable: true,
dataSource: [
{ name: "Jane Doe", age: 30, city: "London" },
{ name: "John Doe", age: 33, city: "Madrid" }
]
});
</script>
But I don’t know how can we do same thing in Kendo Angular grid? Can anyone please help to achieve this in angular?