Problem with changing date in lightbox control

Hello all !

Here is my problem :

I have a scheduler with a week view.

When I click on an event previously created, changing the start day of this event in time control lightbox result in losing the duration of the modified event.

His duration is reset to the default value (in my case, 30 mins).

I have those properties set :
scheduler.config.time_step = 30;
scheduler.config.limit_time_select = true;

   scheduler.config.lightbox.sections=[
                    {name:"description", height:130, map_to:"text", type:"textarea" , focus:true,button:"test"},
                    {name:"custom", height:23, type:"select", options:sections, map_to:"section_id" },
                    {name:"time", height:72, type:"time", map_to:"auto"}
            ];

Does an property exists to keep the duration of the modified event ?

Thanks in advance !

Nope, there is no such option.
You will need to create a custom time section, or you can attach event handler to onEventSave and from it modify the end-date in the necessary way.

OK , thanks anyway !