Here I wrote a stored procedure for getting CategoryName values โโbased on id. The values โโcome like India, America, Brazil before serving. But in the user interface section, the values โโare automatically sorted alphabetically, displaying groups such as America, Brazil, India. I wanted to show how in the display, for example, in India, America, Brazil. What am I doing wrong? Thanks in advance.
$(document).ready(function () { var grid = $("#grid").kendoGrid({ dataSource: { type: "GET", transport: { read: { url: "some url placed here", dataType: "jsonp" } }, pageSize: 20, serverSorting: false, group: { field: "CategoryName", aggregates: [{ field: "abc", aggregate: "count" }, { field: "def", aggregate: "sum" }, { field: "ghi", aggregate: "sum" }] }, aggregate: [{ field: "abc", aggregate: "count" }, { field: "def", aggregate: "sum" }, { field: "ghi", aggregate: "sum" }] }, columns: [
});
source share