I am writing an asp.net mvc app that uses the scheduler to my allow users as well as resources to manage their own calendars (including recurring events). I also allow users to create events that require both attendees as well as resources to attend.
I need to be able to validate that the newly proposed event does not have any conflicts with the resources and attendees. I would be good to do this in the browser, but ultimately it needs to also be done on the server because multiple people could be doing scheduling at the same time.
The big question is how to handle possible recurrence
Thanks!
-Logan

Hello i am using .kendoSortable and i want to restrict the user from dropping rows at the column headers line. is this possible?
I have added filter in dropdownlist. After user selects item from filter, when the program tried to select another item in dropdownlist, it will use the filtered list, not the original list. How can I use the original full list to change selection? Thanks.
var dropdownlist = $("#fac").data("kendoDropDownList");
dropdownlist.select(function (dataItem) { <============================
return dataItem.FacCode === s + e.faccode;
});

<ul id="results" data-template="item-template" data-bind="images"></ul><script id="item-template" type="text/x-kendo-template"> <li><img data-bind="attr: {src: ??? }" /></li></script>
Hello
I recently updated to KendoUI 2018.1.221 and have to do some adjustments now. It looks like that the kendoMaskedTextBox is acting different now and I can't find a (proper) solution for this problem to fix it: There is always a rounded border as soon as I put a kendoMaskedTextBox on a input. I have prepared a simple example or you can use this code to show you the effect:
<!DOCTYPE html><html lang="en"> <head> <meta charset="UTF-8"> <!-- Telerik Framework --> <link href="http://kendo.cdn.telerik.com/2018.1.221/styles/kendo.common.min.css" rel="stylesheet" /> <link href="http://kendo.cdn.telerik.com/2018.1.221/styles/kendo.default.min.css" rel="stylesheet" /> <script src="http://kendo.cdn.telerik.com/2018.1.221/js/jquery.min.js"></script> <script src="http://kendo.cdn.telerik.com/2018.1.221/js/kendo.all.min.js"></script> <script> $(document).ready(function() { $("#starttime").kendoMaskedTextBox({ mask: 'h0:t0:t0', rules: { 'h': /[0-2]/, 't': /[0-5]/ } }); }); </script> </head> <body style="background-color: #f1f1f1"> <div> <input id="starttime" style="border:1px solid blue;"> </div> </body></html>
As you can see there are two borders:
The inner one seems to be set by the widget.
The outer one is set by me (style). I don't know why that widget puts a border by default (that I don't want). The widget should only mask the input and not style it, imho.
I've checked all your samples on the API page of MaskedTextBox and they all have rounded corners.
How do I get rid of that rounded border inside the input?
Regards
Hi,
On the click of a button, I am saving the content (json) to a file. The problem I am facing is that the file has whitespaces stripped out.
saveContent : function () { var format = "data:application/json"; var fileName = "content.json"; var dataURI = format + "," + this.content; kendo.saveAs( { dataURI: dataURI, fileName: fileName });}For e.g. if the json is something like this
{"productDescription" : "Bag of wheat 15 kilogram"}
the content of file is the following. How can I make sure that saved file has whitespaces preserved?
{"productDescription" : "Bagofwheat15kilogram"}Hi,
I have a problem with Kendo grid multiple grouping.
I want to display multi column grouping with a single header. Currently it is showing as tree hierarchy for multi column grouping.
I have attached a file which shows Radgrid grouping demo and I want to show this by using Kendo grid grouping.
Could you pls suggest any overcome for this?

Hello,
is it possible to use the Kendo styling of Checkboxes and Radiobuttons without specifying an id-field on the input-element? If I remove the ID and the "for"-attribute the checkbox is not working anymore.
The elements are generated dynamically and I don't want to specify an ID just for the styling.
Best regards
var dataSource = new kendo.data.DataSource({ transport: { read: { url: "GetSiteRoleCategoryInstances_Result_Read", data: { userID: "24", isCompletedFilter: false }, create: { url: "QT_CreateSRCI", dataType: "json" }, parameterMap: function (options, operation) { if (operation !== "read" && options.models) { console.log(operation) console.log(options.models) return { models: kendo.stringify(options.models) }; } } } }, batch: true, schema: { model: { id: "SrciID", fields: { SrciID: { editable: false, nullable: true }, FK_SiteRoleCategory_ReqID: { type: "number" }, ReviewName: { type: "string"}, InstanceName: { type: "string" }, StartDate: { type: "date" }, DueDate: { type: "date" }, InspectionReport: { type: "string" }, InspectionReportDate: { type: "date" }, Note: { type: "string" }, CreatedDate: { type: "date" }, CreatedBy: { type: "string" }, RequiredNumber: { type: "number" }, IsCompleted: { type: "bool" } } } }, })
// Grid
$("#reviewGrid").kendoGrid({ dataSource: dataSource, columns: [ { field: "FK_SiteRoleCategory_ReqID"}, { field: "ReviewName", title: "Review Name", editor: src_rDropDownEditor, width: 400 }, { field: "InstanceName" }, { field: "StartDate", title: "Start Date", type: "datetime", format: "{0:MM/dd/yyyy}" }, { field: "DueDate", title: "Due Date", type: "date", format: "{0:MM/dd/yyyy}" }, { field: "InspectionReport" }, { field: "InspectionReportDate", title: "Last Inspection Date", type: "date", format: "{0:MM/dd/yyyy}" }, { field: "Note" }, { field: "CreatedDate", title: "Created Date", type: "date", format: "{0:MM/dd/yyyy}" }, { field: "CreatedBy" }, { field: "RequiredNumber" }, { field: "IsCompleted"} //{command: [ "edit" , "destroy"], width: 180 } ], //toolbar: ["create", "pdf"], //serverPaging: true, //serverSorting: true, //serverSorting: true, editable: "popup", sortable: { mode: "single" }, toolbar: ["create"], detailExpand: function onDetailExpand(e) { //Implement the event handler for detailExpand DetailExpandEvent(e); }, // detailCollapse: function onDetailCollapse(e) { //Implement the event handler for detailCollapse // }, //change: onChange, scrollable: false, resizable: true, selectable: true, detailTemplate: kendo.template($("#kDetailsTemplate").html()), detailInit: DetailInit, dataBound: GridDataBind, autoBind: true, autoSync: true, serverOperation: false });
// CUSTOM EDITOR FOR ReviewName
function src_rDropDownEditor(container, options) { console.log(container) console.log(options) $('<input data-bind="value:' + options.field + '"/>') .appendTo(container) .kendoDropDownList({ dataTextField: "ReviewName", dataValueField: "ID", dataSource: src_rDs });}
Any idea as to why am I getting this error?