I've got two kendo sortable list wherein I can drag the multi-selected items left to right. All looks good but I experienced this weird behavior. The second time I drag diagonally upwards (north east), the placeholder "Drop here" will not appear until you move the mouse downward a little.
Start dragging "Strawberries" then "Pinapples" to the right list. Remember that your cursor should move north east until you reach the below of "Strawberries"
Is this a limitation of kendo drag and drop?
Here is the Dojo that I am using.

I've been looking at this example (dragging event from external grid and dropping to Scheduler): http://docs.telerik.com/kendo-ui/controls/scheduling/scheduler/how-to/drag_and_drop_grid_scheduler
The look and feel is not consistent with when I drag and drop events within scheduler (while moving over drop area there is a semi-transparent event with start and end time updating while you move).
Is there a way of achieving the same behaviour for events from external grid? If there is no easy solution, would you point me into right direction?

Hi I have a tabstrip inside a kendo window which works perfect until i close the window, When i try to reopen the window the tabstrip doesn't work.
All i see is the html not in a tabstrip
this is my function which is called on a click
function MyAccountWindow() {
var kendoWindow = $("<div id='window'/>").kendoWindow({
title: "User Details",
width: "600px",
height:"400px",
resizable: true,
modal: true,
content: {
template: tabTemplate
}
}).data("kendoWindow");
var tab = $("#tabstrip").kendoTabStrip({
animation: {
open: {
effects: "fadeIn"
}
},
});
kendoWindow.open().center();
}
my tabtemplate is just a variable with html inside.
Any help would be appreciated
I am trying to read from the following webservice :
http://apis.io/api/apis
Here is the code snippet :
http://dojo.telerik.com/@phcc1t/oSEBa
Could you please let me know where is the issue
In this example, I can successfully change the properties/style of a Note on Chart on noteClick... http://dojo.telerik.com/@pagemedias/oVuWI
What I need to do is 'trigger' this from outside the Chart.
Example: I am outputting the same list of Notes that appear on the chart under the chart and when user clicks/hovers over note under chart I want to change colour/style of same Note in chart (see attached).
I have been able to highlight note under chart (has css class of 'key-A') when click on note in chart (get noteText which = 'A' and add a new styling class to 'key-A' under chart). But I also want to achieve the same thing, just the other way around (click note under chart and highlight note in chart).
How do I access e.visual of a particular note in chart?
I'm trying to create a custom filter on a date field to show items that have a date in the next 30, 60 and 90 days, including any overdue (i.e. dated in the past).
The current code creates a filter with the needed options, but how can the filters be implemented? The 30 day filter is to be applied when the data is loaded initially.
var pending = [ "60 days", "90 days" ];var riskFilter = function(e) { e.kendoDropDownList({ optionLabel: "30 days", dataSource: pending });}$('#current-reviews').kendoGrid({ theme: 'npw', columns: [ { width: "240px", field: "nextreview", title: "Next Review Date", format: "{0:dd MMMM yyyy}", filterable: { ui: pendingFilter } },],filterable: { extra: false, operators: { date: { lte: "Is due within" } } }I'm using a kendo dropdownlist in angular 2, when i click the drop down it pushes the content of my page down. (see attached)
Does anyone have any idea?
Thank you.
Huy Nguyen
<div id="myScheduler"></div><div id="myEvent"></div>