Hello All,
I'm trying to enable resizing in my schedule app. I'm using the schedule control. From what I see online, resizing should be enabled by default.
When I mouse over my events, I do not get the option to resize them.
I have injected as below
ej.schedule.Schedule.Inject(ej.schedule.Day, ej.schedule.Week, ej.schedule.DragAndDrop, ej.schedule.Resize);
When I look at the code in the debugger I see the following for ej.schedule.Resize, which seems ok. Drag and drop are working fine.
I have allowResizing:true,
I dont have resizeStart: or other handlers defined. I tried defining them but they were never hit in the debugger.
Do my events need to have a resize-able tag in them somewhere when I create them? What could be preventing the resize from working?
Using a very recent version of the control in standard ES5 Javascript.
R