My dropdownlist seems to have a lot of padding inside. When the optional value is displayed, it corresponds to the proper width from the CSS, However, when a value is selected, it expands itself to a lot more than the actual content length. Please see attached document
Also, how do i have a fixed width of the dropdown when it is not selected, but when the user clicks to open the list, the dropped list is expanded
HI Telerik Team,
I am trying to populate grid using datasource. but the grid is not populating
asmx
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public string GetTasks1()
{
JavaScriptSerializer theSerializer = new JavaScriptSerializer();
string result = "";
List<rt_aw_user_task_details> resultList = new List<rt_aw_user_task_details>();
AW_USER_TASK_DETAILS taskDetails = new AW_USER_TASK_DETAILS();
taskDetails.Query.Load();
resultList = taskDetails.ToRemotableList();
var data = resultList.Select(i => new { i.seq_no, i.task_id, i.category }).ToList();
result = new JavaScriptSerializer().Serialize(data);
return result;
}​
aspx page
$(document).ready(function () {​
var tasksDataSource = new kendo.data.DataSource({
type: "json",
serverFiltering: true, serverPaging: true, serverSorting: true, pageSize: 10,
transport: {
read: {
datatype: "json",
type: "POST",
url: "Service/MyTasks.asmx/GetTasks"
}
}
});
tasksDataSource.read();
$("#grid").kendoGrid({
dataSource: tasksDataSource,
height: 400,
groupable: true,
sortable: true,
pageable: {
refresh: true,
pageSizes: true,
buttonCount: 5
},
columns: [{
field: "seq_no",
title: "CATEGORY"
}, {
field: "task_id",
title: "FREQUENCY"
}, {
field: "category",
title: "ISANYTIME",
}]
});
});
The grid is not loading.......
Is there anything i am missing??
and the service returns the following data
[{ "seq_no": 2, "task_id": 96, "category": "Task" }, { "seq_no": 3, "task_id": 92, "category": "Report To Review" },
{ "seq_no": 4, "task_id": 99, "category": "Meeting" }, { "seq_no": 5, "task_id": 96, "category": "Task" },
{ "seq_no": 6, "task_id": 96, "category": "Task" }, { "seq_no": 7, "task_id": 93, "category": "Report To Send" },
{ "seq_no": 8, "task_id": 99, "category": "Meeting" }, { "seq_no": 9, "task_id": 96, "category": "Task" },
{ "seq_no": 10, "task_id": 96, "category": "Task" }, { "seq_no": 11, "task_id": 99, "category": "Meeting" }]
But it is working when I give the data directly
var tasksDataSource = new kendo.data.DataSource({
data: [
{ "seq_no": 2, "task_id": 96, "category": "Task" }, { "seq_no": 3, "task_id": 92, "category": "Report To Review" },
{ "seq_no": 4, "task_id": 99, "category": "Meeting" }, { "seq_no": 5, "task_id": 96, "category": "Task" },
{ "seq_no": 6, "task_id": 96, "category": "Task" }, { "seq_no": 7, "task_id": 93, "category": "Report To Send" },
{ "seq_no": 8, "task_id": 99, "category": "Meeting" }, { "seq_no": 9, "task_id": 96, "category": "Task" },
{ "seq_no": 10, "task_id": 96, "category": "Task" }, { "seq_no": 11, "task_id": 99, "category": "Meeting" }]
});
tasksDataSource.read();​

HI Telerik Team,
I am trying to populate grid using datasource. but the grid is not populating
asmx [WebMethod] [ScriptMethod(ResponseFormat = ResponseFormat.Json)] public string GetTasks1() { JavaScriptSerializer theSerializer = new JavaScriptSerializer(); string result = ""; List<rt_aw_user_task_details> resultList = new List<rt_aw_user_task_details>(); AW_USER_TASK_DETAILS taskDetails = new AW_USER_TASK_DETAILS(); taskDetails.Query.Load(); resultList = taskDetails.ToRemotableList(); var data = resultList.Select(i => new { i.seq_no, i.task_id, i.category }).ToList(); result = new JavaScriptSerializer().Serialize(data); return result; }​aspx page $(document).ready(function () {​ var tasksDataSource = new kendo.data.DataSource({ type: "json", serverFiltering: true, serverPaging: true, serverSorting: true, pageSize: 10, transport: { read: { datatype: "json", type: "POST", url: "Service/MyTasks.asmx/GetTasks" } } }); tasksDataSource.read(); $("#grid").kendoGrid({ dataSource: tasksDataSource, height: 400, groupable: true, sortable: true, pageable: { refresh: true, pageSizes: true, buttonCount: 5 }, columns: [{ field: "seq_no", title: "CATEGORY" }, { field: "task_id", title: "FREQUENCY" }, { field: "category", title: "ISANYTIME", }] }); });The grid is not loading.......
Is there anything i am missing??
and the service returns the following data
[{ "seq_no": 2, "task_id": 96, "category": "Task" }, { "seq_no": 3, "task_id": 92, "category": "Report To Review" }, { "seq_no": 4, "task_id": 99, "category": "Meeting" }, { "seq_no": 5, "task_id": 96, "category": "Task" }, { "seq_no": 6, "task_id": 96, "category": "Task" }, { "seq_no": 7, "task_id": 93, "category": "Report To Send" }, { "seq_no": 8, "task_id": 99, "category": "Meeting" }, { "seq_no": 9, "task_id": 96, "category": "Task" }, { "seq_no": 10, "task_id": 96, "category": "Task" }, { "seq_no": 11, "task_id": 99, "category": "Meeting" }]
But it is working when I give the data directly
var tasksDataSource = new kendo.data.DataSource({ data: [ { "seq_no": 2, "task_id": 96, "category": "Task" }, { "seq_no": 3, "task_id": 92, "category": "Report To Review" }, { "seq_no": 4, "task_id": 99, "category": "Meeting" }, { "seq_no": 5, "task_id": 96, "category": "Task" }, { "seq_no": 6, "task_id": 96, "category": "Task" }, { "seq_no": 7, "task_id": 93, "category": "Report To Send" }, { "seq_no": 8, "task_id": 99, "category": "Meeting" }, { "seq_no": 9, "task_id": 96, "category": "Task" }, { "seq_no": 10, "task_id": 96, "category": "Task" }, { "seq_no": 11, "task_id": 99, "category": "Meeting" }] }); tasksDataSource.read();​
Hello!
We are using the angular hotkeys (http://chieffancypants.github.io/angular-hotkeys/) for keyboard shortcuts in our application. Currently it seems like the keyboard events aren´t triggered when the kendo editor is focused. Is this due to that the editor resides in an iframe?
Are there any workarounds for this problem? The keyboard shortcut that we are trying to catch is ctrl+alt+s.
In every browser $("#Grid").data("kendoGrid").setDataSource(dataSource); triggers a change and reads when autoBind is set to true.
However, in IE - autoBind only ever seems to fire once. I can call .setDataSource but in IE it never triggers the read().
Anyone know of a work around?
Hello,
I'm trying to implement Kendo drag and drop functionality on Angulars ng-repeat. In my case i have two drop targets, in which one drop target has draggable elements on load, and the other doesn't. We can drag the elements from first drop target to the second, and these elements will be draggable in it. But when i drag these elements from the second drop target back to the first, the hint gets stuck in the second drop target. Any help will be appreciated.
Dojo: http://dojo.telerik.com/evADi
Thanks
I have an onChange function for my Kendo UI grid that reads as follows:
function onChange(arg) {
var selectedRow = this.select();
//Do something with selectedRow//
}
This function works perfectly when I run my code as a regular html page. However, when I copy my script and place in a "Script Editor" web part on SharePoint 2013, I receive an error stating that "this" is undefined or null. Any help on this issue would be truly appreciated. Thank You.

Hi,
I'd like to get dates range for each view (mine are: timeline, week, month). How can I accomplish that?
Thank you