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

Implement custom editor without losing movable and resizing functionality

1 Answer 45 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Nithin
Top achievements
Rank 1
Nithin asked on 13 Jun 2018, 01:08 PM
In our scheduler we have developed custom event editor which is opened in a new page and not using the default editor. However, if we disable the default editor using 
    
$scope.schedulerOptions = {
   editable: false
}

but now we are unable to move or resize the event date range on the scheduler.
Is there a way to make it work without showing the default editor and making the events movable ?
How can we fix this issue?

editable property set to false example

1 Answer, 1 is accepted

Sort by
0
Accepted
Ivan Danchev
Telerik team
answered on 15 Jun 2018, 08:18 AM
Hello Nitin,

Instead of setting editable: false, you can set editable.update and editable.create options to false as shown below:
editable: {
  update: false,
  create: false
}
This way opening the default editor will be prevented, but the events would remain movable/resizable.

Regards,
Ivan Danchev
Progress Telerik
Try our brand new, jQuery-free Angular components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
Tags
Scheduler
Asked by
Nithin
Top achievements
Rank 1
Answers by
Ivan Danchev
Telerik team
Share this question
or