Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
You can use the move event of the scheduler to find the 'shadow' event element and change it's content - please check the example below:
function
move(e) {
var
scheduler = $(
"#scheduler"
).data(
"kendoScheduler"
);
view = scheduler.view();
template =
"your custom template"
;
$(
".k-event-drag-hint"
).html(template);
}