@(Html.Kendo().Scheduler< Calendar.Models.CalendarEvents>().Name("scheduler") ….Resources(resource =>{ resource.Add(m => m.Clients).Title("Client").Multiple(true).DataTextField("Text").DataValueField("Value").DataSource(source => source.Read(read => read.Action("GetPatientsList", "Calendar").Data("searchclient")));})….Mobile(MobileMode.Auto))
Is there any way to fix it to show on mobile correctly?
Many thanks,
Hi,
We're developing an phonegap app with Kendo and we're facing some issues with mobile listview. I have a simple declarative listview on a view like this:
<ul id="tasksList" data-role="listview" data-auto-bind="true" data-endless-scrolling="true" data-source="app.model.dataSource" data-template="taskListItemTemplate"></ul>When I turn endless scrolling on, buttons on the template start to behave weird. Clicking on a button results in a blank row and a row clicked is overlaping the first row. Some buttons seem not to work.
I've prepared an example here: http://jsbin.com/xixapuwizo/1/edit?html,js,output (it was based on an example from Kendo UI api regarding endless scrolling)
If I try to click on buttons from second row or below, they overlap the first row (change) or seem not to work (remove).
I've also tried with one of the latest releases (2015.3.1111) and the result is similar.
We're in the middle of developing an app and this is a blocker for us.
Regards,
Andrzej
I have a grid that has a field I want to group by. The field comes from the db in number format, I use the template on the column to dynamically changed it to the actual verbose type, such as "molecule", "assembly", etc.
That all works fine and displays in the grid correctly. My issue is this, when I do a group by that column instead of the verbose type values I'm getting their numeric equivalent. Is there some way to have the Group By header display the same value as the template output for the column?
Regards,
m

model: { id: "empId", fields: { "empId": { editable: false, type: "string" }, "empLastName": { editable: false, type: "string" }, "empFirstName": { editable: false, type: "string" }, "empRole": { editable: true, type: "string" }, "empUserName": { editable: false, type: "string" }, "isCore": { editable: true, type: "boolean" }, "projTeamId": { editable: false, type: "string" }, "hours": { editable: false, type: "number" }, "empStatus": { editable: false, type: "string" } }}<script id="teamEditorTemplate" type="text/x-kendo-template"> <table> <colgroup> <col width="160" /> <col width="100" /> <col /> </colgroup> <tr> <td rowspan="12"><img class="teamImage" width="128" height="128" data-src="/Content/images/anonymousUser.jpg" src="# if(empUserName === "null") { #/Content/images/anonymousUser.jpg# } else { #@System.Configuration.ConfigurationManager.AppSettings["EmployeePhoto"]#= empUserName #.jpg# } #" /></td> <td><div class="k-edit-label"> <label for="Id">Employee ID:</label> </div></td> <td>#= empId #</td> </tr> <tr> <td><div class="k-edit-label"> <label for="FirstName">First Name:</label> </div></td> <td>#= empFirstName #</td> </tr> <tr> <td><div class="k-edit-label"> <label for="LastName">Last Name:</label> </div></td> <td>#= empLastName #</td> </tr> <tr> <td><div class="k-edit-label"> <label for="Role">Role:</label> </div></td> <td><input type="text" id="Role" class="k-input k-textbox" data-bind="value:empRole" data-value-field="empRole" data-text-field="empRole" data-source="empRoleDropDownDataSource" data-role="dropdownlist" /></td> </tr> <tr> <td><div class="k-edit-label"> <label for="Core">Core Member:</label> </div></td> <td><input type="checkbox" id="Core" class="k-input k-checkbox" data-bind="value:isCore" /></td> </tr> <tr> <td><div class="k-edit-label"> <label for="Active">Active Employee:</label> </div></td> <td><input id="Active" disabled # if(empStatus !== "T") { #checked="checked"# } # type="checkbox" class="k-input k-checkbox" /></td> </tr> <tr> <td><div class="k-edit-label"> <label for="Hours">Hours:</label> </div></td> <td>#= hours #</td> </tr> </table></script>var dataTeamRead = "/ProjectInfo/GetProjectTeam";var dataTeamUpdate = "/ProjectInfo/UpdateProjectTeam";var dataTeamDestroy = "/ProjectInfo/DestroyProjectTeam";var dataTeamCreate = "/ProjectInfo/CreateProjectTeam";var dataTeam = new kendo.data.DataSource({ pageSize: 10, transport: { read: { url: dataTeamRead, data: { projectId: Querystring.Get("projectId") }, type: "POST", dataType: "json" }, update: { url: dataTeamUpdate, type: "POST", dataType: "json" }, destroy: { url: dataTeamDestroy, type: "POST", dataType: "json" }, create: { url: dataTeamCreate, type: "POST", dataType: "json" } }, schema: { type: "json", model: { id: "empId", fields: { "empId": { editable: false, type: "string" }, "empLastName": { editable: false, type: "string" }, "empFirstName": { editable: false, type: "string" }, "empRole": { editable: true, type: "string" }, "empUserName": { editable: false, type: "string" }, "isCore": { editable: true, type: "boolean" }, "projTeamId": { editable: false, type: "string" }, "hours": { editable: false, type: "number" }, "empStatus": { editable: false, type: "string" } } } }});var kendoGridPageable = { pageSize: 10, previousNext: true, numeric: false, info: true},kendoGridToolbar = [ { name: "create", text: "Add" }, { name: "edit", text: "Edit" }, { name: "destroy", text: "Remove" }];$("#gridTeam").kendoGrid({ rowTemplate: kendo.template($("#teamRowTemplate").html()), columns: [ { "title": " ", "filterable": false, "width": "48px" }, { "field": "empLastName", "title": "Last", "filterable": true, "width": "25%" }, { "field": "empFirstName", "title": "First", "filterable": true, "width": "25%" }, { "field": "empRole", "title": "Role", "filterable": true, "width": "25%" }, { "field": "hours", "title": "Hours", "filterable": true, "width": "25%" } ], dataSource: dataTeam, scrollable: false, sortable: { mode: "multiple", allowUnsort: true }, filterable: true, pageable: kendoGridPageable, selectable: "row", nagivatable: true, toolbar: kendoGridToolbar, editable: { mode: "popup", template: $("#teamEditorTemplate").html(), update: true, destroy: true, confirmation: "Are you sure you want to remove this team member?" }, columnMenu: true});<script id="teamRowTemplate" type="text/x-kendo-template"> <tr class="# if(isCore === true) { #coreMember# } # # if(empStatus === "T") { #terminatedEmployee# } #" data-uid="${uid}"> <td><img class="teamImage" width="32" height="32" data-src="/Content/images/anonymousUser.jpg" src="# if(empUserName === "null") { #/Content/images/anonymousUser.jpg# } else { #@System.Configuration.ConfigurationManager.AppSettings["EmployeePhoto"]#= empUserName #.jpg# } #" /></td> <td>#= empLastName #</td> <td>#= empFirstName #</td> <td>#= empRole #</td> <td>#= hours #</td> </tr></script>Hi,
I've found that Kendo Combobox renders differently while attaching to a local data source than attaching to a remote data souce in Visual Studio LightSwitch. Please refer to the image for the issue. I know there are rendering issues in LightSwitch because of JQuery Mobile (http://www.telerik.com/forums/kendo-combobox-rendering-issue) and this may not be the issue of data source. But it will help me a lot if I understand the cause of the problem.
Thanks.

Hello everyone?
Do anyone know if there is a builtin way of letting the user choose how the filters are to be shown ?
I would like to let my users choose between a the row and menu modes.
Cheers!
Hello,
column resize doesn't work on touch device (acer aspire) in google chrome.
In ms edge it works, though not very reliable.
regards
Axel
