I have two questions regarding row grouping with my Kendo Grid that is being built from an existing HTML table.
First, the rows in the table are already sorted by the column to group by before the table becomes a Kendo Grid. This sorting is not ascending or descending, but is a custom sort that should never change. Here is the Kendo Grid initialization code where I group by the groupNumber column.
var grid = $("#myHTMLGrid").kendoGrid({
dataSource: {
group: {
field: "groupNumber"
}
},
});
By default, grouping the rows causes the group rows to be sorted in ascending order. Can I possibly prevent the group rows from being reordered in any way so that the table holds true to the initial ordering?
My second question is this. I need to color code the group rows based on the values of groupNumber. How can this be accomplished? Thank you.

We are currently experiencing a bug in the kendo grid control on IE version 11.420.10586.0 and 11.0.9600.18349, have not test all IE versions only these 2. The column resizing handles do not appear when attempting to resize the column. It has been tested in modern versions of Firefox, Chrome, Safari, Opera and IE and IE is the only one experiencing this issue. Is this a known issue and can you recommend a work around? I am experiencing this but on your samples so I have not enclose sample code. Please see http://demos.telerik.com/kendo-ui/grid/column-resizing, I am experiencing the problem in your samples as well as in my own project.
Thanks
Randy

I am very new to telerik and angular. Literall my 4th week using these controlls and i need help. I created a telerik grid and connected to a datsource generated by a service. I am able to get the data into to the grid, but the filter/sort does not function. I have inserted my code below.
<====================== html page begin =======================>
<div id="recentclaimsgrid" kendo-grid k-data-source="recentclaims" k-selectable="'row'" k-pageable='{ "refresh": true, "pageSizes": true }'
k-columns='[
{ field: "url", filterable: { multi: true, search: true }, title: "" },
{ field: "status", filterable: { multi: true, search: true }, title: "Status" },
{ field: "settled", filterable: { multi: true, search: true }, title: "Settled" },
{ field: "name", filterable: { multi: true, search: true }, title: "Name" },
{ field: "dateofloss", filterable: { multi: true, search: true }, title: "Data Of Loss" },
{ field: "claimnumber", filterable: { multi: true, search: true }, title: "Claim Number" },
{ field: "policynumber", filterable: { multi: true, search: true }, title: "Policy Number" },
{ field: "sequencenumber", filterable: { multi: true, search: true }, title: "Sequence Number" },
{ field: "lineofbusiness", filterable: { multi: true, search: true }, title: "Line Of Business" },
{ field: "currentworkqueue", filterable: { multi: true, search: true }, title: "Current Workqueue" },
{ field: "numberofdays", filterable: { multi: true, search: true }, title: "Number of Days" },
{ field: "liabilitydecision", filterable: { multi: true, search: true }, title: "Liability Decision" }
]'>
</div>
<====================== html page end=======================>
<====================== angular controller page begin =======================>
function loadfullrecentclaims() {
caseopenService.loadfullrecentclaims(function(response) {
$scope.recentclaims = new kendo.data.DataSource({
data: response,
schema: {
model: {
fields: {
url: { type: "string" },
status: { type: "string" },
settled: { type: "string" },
name: { type: "string" },
dateofloss: { type: "string" },
claimnumber: { type: "string" },
policynumber: { type: "string" },
sequencenumber: { type: "string" },
lineofbusiness: { type: "string" },
currentworkqueue: { type: "string" },
numberofdays: { type: "string" },
iabilitydecision: { type: "string" },
}
}
},
pageSize: 5,
serverPaging: true,
serverFiltering: true,
serverSorting: true
});
}, function(error) {
messageService.Error(error, true);
});
};
<====================== angular controller page begin=======================>
function loadfullrecentclaims(callSuccess, callError) {
helperService.httpget('caseopen/LoadFullRecentClaims', callSuccess, callError);
}
<====================== angular service page end=======================>

Hi..
I created kendo stacked column chart in my project using angular js. im giving condition tool tip template. here is the dojo example http://dojo.telerik.com/aZEgu
HI,
In this sample code i try to delete shape by remove item from diagram datasource,
but after the delete the 2 shapes remain in the diagram and in the datasource only 1.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Kendo UI Snippet</title>
<link rel="stylesheet" href="http://kendo.cdn.telerik.com/2016.2.714/styles/kendo.common.min.css"/>
<link rel="stylesheet" href="http://kendo.cdn.telerik.com/2016.2.714/styles/kendo.rtl.min.css"/>
<link rel="stylesheet" href="http://kendo.cdn.telerik.com/2016.2.714/styles/kendo.silver.min.css"/>
<link rel="stylesheet" href="http://kendo.cdn.telerik.com/2016.2.714/styles/kendo.mobile.all.min.css"/>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://kendo.cdn.telerik.com/2016.2.714/js/kendo.all.min.js"></script>
</head>
<body>
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
dataSource: [{
"name": "Telerik",
"items": [
{"name": "Kendo"},
{"name": "Icenium"}
]
}],
template: "#= item.name #",
autoBind: false
});
// Fetching data will trigger "change" on the dataSource
$("#diagram").getKendoDiagram().dataSource.fetch();
var datasource = $("#diagram").getKendoDiagram().dataSource.data()[0];
alert(datasource.items.length); //2
$("#diagram").getKendoDiagram().dataSource.remove(datasource.items[0]);
alert(datasource.items.length); //1
</script>
</body>
</html>

How can i generate, using kendo ui grid with mvc, a QRCode for every row of grid with link to id page of this row element?
I have something like in the image.
<!DOCTYPE html><html><head> <meta charset="utf-8"> <title>Untitled</title> <link rel="stylesheet" href="http://cdn.kendostatic.com/2014.2.1008/styles/kendo.common.min.css"> <link rel="stylesheet" href="http://cdn.kendostatic.com/2014.2.1008/styles/kendo.rtl.min.css"> <link rel="stylesheet" href="http://cdn.kendostatic.com/2014.2.1008/styles/kendo.default.min.css"> <link rel="stylesheet" href="http://cdn.kendostatic.com/2014.2.1008/styles/kendo.dataviz.min.css"> <link rel="stylesheet" href="http://cdn.kendostatic.com/2014.2.1008/styles/kendo.dataviz.default.min.css"> <link rel="stylesheet" href="http://cdn.kendostatic.com/2014.2.1008/styles/kendo.mobile.all.min.css"> <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script> <script src="http://cdn.kendostatic.com/2014.2.1008/js/kendo.all.min.js"></script> <script> var ds = new kendo.data.DataSource({ data: [ { text: 'Tweet 1', id: 1 }, { text: 'Tweet 2', id: 2 }, { text: 'Tweet 3', id: 3 }, { text: 'Tweet 4', id: 4 }, { text: 'Tweet 5', id: 5 } ] }); $('#twitter').kendoListView({ dataSource: ds, template: '<li>#: text #</li>' }); </script></head><body> <ul id="twitter"></ul></body></html>I have an issue with restoring the selection in a Kendo dropdownlist after my application loads data from the database. When I set a breakpoint after restoring the selection, I can see that the dropdownlist has been set properly to the value to restore. However, when I continue after the breakpoint, the dropdownlist resets to its default value. What is causing the dropdown to reset?
We are using Kendo UI v2016.1.322, Internet Explorer 11.0.9600.18314, and Windows Server 2008 R2 Enterprise.
This is the markup for the dropdownlist :
<div class="panel panel-default" id="carEntriesPanel"
ng-repeat="carEntry in carEntries[selectedRouteIndex]">
<select class="form-control" kendo-drop-down-list k-options="kdCarTextOptions"
id="{{'carTextDropdown-' + $index}}" ng-model="carEntry.carTextSelected.id"
</select>
</div>
These are the options and data source:
$scope.kdCarTextOptions = {
optionLabel: 'Please Select',
dataSource: $scope.carTextDropDownDataSource,
dataTextField: 'name',
dataValueField: 'id',
select: $scope.onSelect
};
$scope.carTextDropDownDataSource = new kendo.data.DataSource({
transport: {
read: function (options) {
options.success($scope.carTexts[$scope.selectedRouteIndex]);
}
}
This is the onSelect method:
$scope.onSelect = function (e) {
var dataItem = this.dataItem(e.item);
$scope.carEntries[$scope.selectedRouteIndex][$scope.carIndex].carTextSelected.id = dataItem.id;
$scope.carEntries[$scope.selectedRouteIndex][$scope.carIndex].carTextSelected.name = dataItem.name;
};
}
This is the method that restores the dropdown selection. By setting breakpoints, I could see that the dropdownlist does show the restored value, and onSelect is called after the select is triggered. But when I continue after the trigger, the dropdownlist resets to its default value.
function updateCarTextDropdown(carIndex, carEntry) {
var dropdown = angular.element('#carTextDropdown-' + carIndex).data('kendoDropDownList');
if (dropdown) {
dropdown.dataSource.read();
if (carEntry.car.CAR_TXT_ID !== undefined) {
dropdown.value(carEntry.car.CAR_TXT_ID.toString());
dropdown.trigger('select');
}
}
Hi,
I am using grid with server side pagination/filtering & column checkbox. Lets say, I have specified page size = 25. My requirement is if user has applied some filter and total records are less than 500, then user should be able to Check All records across multiple pages. Right now, Check All selects only current page records.
Alternative could be, If I can dynamically change the page size to ALL, that should also solve this.
Regards,
Sanjay