Fiddle: https://jsfiddle.net/avnsri4986/e7nfrj9h/3/
Stack Trace:
Uncaught SyntaxError: Unexpected number at Function (<anonymous>) at getter (kendo.all.js:2127) at Object.<anonymous> (kendo.all.js:6550) at each (jquery.min.js:2) at new init (kendo.all.js:6537) at new init (kendo.all.js:6888) at Function.de.create (kendo.all.js:9179) at init._dataSource (kendo.all.js:67457) at new init (kendo.all.js:63291) at HTMLDivElement.<anonymous> (kendo.all.js:2517)I'm looking to add custom rules to a masked textbox and there is not enough documentation or examples to explain how this works properly.
$(this).kendoMaskedTextBox({
mask: "mm/dd",
rules: {
mm: "any number between 01 - 12",
dd: "any number between 01 - 31"}})
I attempted to use a masked date picker, but it still allows for entries like "48/99" which is incorrect.
Is it possible to do something like this using custom rules and regex?
var HDS = new kendo.data.HierarchicalDataSource({ error: raiseAjaxErrorWindow, transport: { read: { url: HDS_URL, dataType: "jsonp" }
}, schema: { model: { id: "id", hasChildren: "hasChildren", data: "data" } }});
$("#treeview").kendoTreeView({
dataSource: HDS,
dataTextField: "text",
dragAndDrop: false,
select: onSelect,
expand: onExpand,
collapse: onCollapse
}); 
I'm very excited to see the birth of this new component. Does the component support drag & drop. My use case would be to have a tilelayout dashboard area to which I would like to drag & drop new items from a side toolbar.
Looking at the reference, it doesn't seem that this component currently support dynamic changes (add/remove) at all. Is that right? And if so, is it on the roadmap?
Best regards,
Ron

I have the following code to present a confirmation to the user but I am not sure how to close it ..
kendo.confirm("Are you sure that you want to Update the System Cache? (<strong>Recommended<strong>) </br></br> If Yes do not navigate away from this page")
.then(function () {
$('body').addClass('waiting');
$('html,body').css('cursor', 'wait');
$('btnUpdateCache').addClass('disabled');
kendoConsole.log("Updating cache data please wait");
kendoConsole.log("Do not navigate away from this page");
$('#console-log').show();
CLOSE IT HERE <<<<<
updateSystemCache();
}, function () {
//kendo.alert("You chose to Cancel action.");
});
Given that code how would I close it?

Hi,
I implemented datasource filtering on my gantt (for jquery) widget which includes filtering of elements by start and end date. In terms of filtering logic, everything works fine, but this introduced interesting behaviour with my gantt. After any action (update of tasks via drag-n-drop for example), gantt is focused to the beginning of filter interval.
I did some debugging and I came to piece of code in kendo library (displayed below) which seems to be cause of the problem.
Is there any way to prevent this focusing, because it doesn't make much sense to scroll there if i change task somewhere in the middle of range.
Thank you
_render: function (tasks) { var view = this.view(); var range = this._range(tasks); var date = view.options.date; this._tasks = tasks; view.range(range); view.renderLayout(); view.render(tasks); if (date) { view._scrollToDate(date); }