Hello,
We are using Kendo UI Mobile v2013.3.1119 in our application and we would like to put a label or something in a field in the right column to activate a modal window to enter a signature box. The problem is the label shows up right after the field label and it does not look good (see the attached image). Is there any way to make it line up with other input fields on the right column?
Thanks!
Is it possible to provide a partial view to the MVC Grid popup edit form?
We want to have a higher level of control on the popup edit form and customise it in a manageable way. Please advise if we can create a view/partial view and provide it as a template to the MVC Razor grid.
If this is possible, please point us in the direction of a code sample.
Many thanks
Hi,
I am trying to get a multiselect to work on a form, but I am struggling to read the selected items when the post occurs. Is there anything special I need to do to make this work?
Matt
I've trying to use the scaffolding for Kendo UI but as soon
as I select something else than "AJAX" like Web.api" the scaffolding
always aborts with a "There was an error running the selected code
generator. An unknonw error occurred during generation". This also seem
to happen for MVC scaffolder. Same problem in both VS2013 and VS2015.
Using default options, ie AJAX, seem to work though.
Any ideas on how to solve this?
Regards,
Patrik Johansson
When I have a kendo editor inside a tabstrip it throws
Uncaught TypeError: Cannot use 'in' operator to search for 'getSelection' in undefine
Here is a sample​
http://dojo.telerik.com/AGavE
Could ​someone help me resolve this issue?
I have grid and custom command
In function of custom command I change $scope variable:
$scope.editLanguage = function (e) {
var dataItem = this.dataItem($(e.currentTarget).closest("tr"));
$scope.name = dataItem.Name;
$scope.key = dataItem.Keyword;
$scope.ID = dataItem.ID;
$scope.Image = dataItem.Image;
//$scope.windowEditLanguage.center();
//$scope.windowEditLanguage.open();
}
But It's not work , but if I add some code to handle somethings it's work. but I just want change variale to display imedietly.
$scope.mainGridOptions = { dataSource: { type: "json", transport: { read: "@Url.Action("getLanguage", "DataJson")", }, pageSize: 8, serverPaging: true, serverSorting: true }, columns: [ { template: "<div>" + "<img src='../../Upload/#:data.Image#' style='max-width:100px; max-height:100px;'/>"+ "</div>" , field: "Image", title: "Hình ảnh", width: 200 }, { field: "ID", title: "ID", width: "120px" }, { field: "Name", title: "Tên", width: "120px" }, { field: "Keyword", title: "Từ khóa", width: "120px" }, { command: { text: "Chỉnh sá»a", click: $scope.editLanguage }, title: " ", width: "80px" }, { command: { text: "Xóa", click: $scope.deleteLanguage }, title: " ", width: "80px" }, ], editable: "inline", height: 800, scrollable: true, selectable: true };Hi,
I want to use kendo diagram control to create SSIS (ETL) kind of functionality at runtime. I found something similar to this here. Is there any source code available for this?
http://demos.telerik.com/kendo-ui/html5-diagram-sample-app
Thank you.
Pm
I've got data being passed to a datasource in the following format:
{"Data":{"Met":0,"Warning":0,"Total":3,"Chapters":[{"Name":"Chapter 1","SortOrder":3,"ID":7855,"Tasks":[{"Name":"Task 1","SortOrder":1,"ID":8334}]},{"Name":"Chapter 2","SortOrder":2,"ID":7856,"Tasks":[{"Name":"Task 2","SortOrder":1,"ID":8334}]},{"Name":"Chapter 3","SortOrder":1,"ID":7857,"Tasks":[{"Name":"Task 3","SortOrder":1,"ID":8334}, {"Name":"Task 4","SortOrder":2,"ID":8334}]}],"NotMet":3}}And I was hoping to use the datasource to sort it, based on the returned sort order, but it's not working. I'm assuming it's because of the nested nodes, is there any way to accomplish this from inside the datasource?
var datasource = new kendo.data.DataSource({ transport: { read: { url: "/Controllers/Controller.cfc?method=getData", type: "get", dataType: "json", data: { ID: id } } }, schema : { type: "json", data: "Data", model: { fields: { Total: { field: "Total", type: "number" }, Met: { field: "Met", type: "number" }, Warning: { field: "Warning", type: "number" }, NotMet: { field: "NotMet", type: "number" } } } }, sort: { field: "SortOrder", dir: "desc" } });Hi there,
i try to create a new Custom View with this Format:
Jan | Feb | March ...
1
2
3
But i would feel a lot better if someone can tell me, before i try to implement it, if this is even possible to create in reasonable time :) Also i am thankful for any tip how to start with this.
Thanks
var _dsRawDataBundle = new kendo.data.DataSource({ offlineStorage: 'kui_raw', transport: { read: { url: 'http://localhost:5000/datasets/1/rawData', dataType: 'jsonp' } }, change: function (e) { var data = this.data(); console.log('Got livestock raw data bundle: ' + JSON.stringify(data)); }, error: function (e) { // Not being called on timeout console.log('Reading raw data failed: ' + e.status); }});