This is a migrated thread and some comments may be shown as answers.

Scheduler Editable.resize not work

3 Answers 134 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
CW
Top achievements
Rank 1
CW asked on 13 Aug 2013, 05:09 AM
can not see the property editable.resize in latest version but in documentation other property are exists eg:-
.Editable(e=>e.Update(false)) ,.Editable(e=>e.Confirmation(false)) please help asap.work with MVC4 rezor.

3 Answers, 1 is accepted

Sort by
0
Accepted
Vladimir Iliev
Telerik team
answered on 14 Aug 2013, 11:20 AM
Hi,

 
Thank you for bringing that missing option of the Scheduler for ASP.NET MVC to our attention - I informed our dev team and they will add it in next internal builds. Until this option is available you can use the following workaround - to modify the Scheduler prototype before it's initialized:

<script>   
    kendo.ui.Scheduler.prototype.options.editable = { resize: true };
</script>
 
@(Html.Kendo().Scheduler<Kendo.Mvc.Examples.Models.Scheduler.TaskViewModel>()
    .Name("scheduler")

As a small sign of our appreciation I have updated your Telerik points.

Kind Regards,
Vladimir Iliev
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
CW
Top achievements
Rank 1
answered on 15 Aug 2013, 05:25 AM
Thanks  Vladimir Iliev,

how can i stop the event drag and drop option .
0
Vladimir Iliev
Telerik team
answered on 16 Aug 2013, 01:44 PM
Hi,

To prevent the resizing and moving of the events you can try to modify both the resize and move options of the editable option:

<script>  
    kendo.ui.Scheduler.prototype.options.editable = { resize: false, move: false };
</script>

 Kind Regards,
Vladimir Iliev
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
Scheduler
Asked by
CW
Top achievements
Rank 1
Answers by
Vladimir Iliev
Telerik team
CW
Top achievements
Rank 1
Share this question
or