Hi all, there is the possibility of insert a multiple events with lightbox?
When I double click on scheduler and lightbox is open i want the possibility of insert for example my custom lightbox:
scheduler.locale.labels.section_trattamentiA=“Trattamento A”;
scheduler.locale.labels.section_trattamentiB=“Trattamento B”;
scheduler.locale.labels.section_trattamentiC=“Trattamento C”;
scheduler.locale.labels.section_trattamentiD=“Trattamento D”;
scheduler.locale.labels.section_trattamentiE=“Trattamento E”;
scheduler.config.lightbox.sections=[
{name:“trattamentiA”, height:21, map_to:“trattamenti”, type:“select”,
options:scheduler.serverList(“trattamenti”)},
{name:“timeA”, height:72, type:“time”, map_to:“auto”}
{name:“trattamentiB”, height:21, map_to:“trattamenti”, type:“select”,
options:scheduler.serverList(“trattamenti”)},
{name:“timeB”, height:72, type:“time”, map_to:“auto”}
{name:“trattamentiC”, height:21, map_to:“trattamenti”, type:“select”,
options:scheduler.serverList(“trattamenti”)},
{name:“timeC”, height:72, type:“time”, map_to:“auto”}
{name:“trattamentiD”, height:21, map_to:“trattamenti”, type:“select”,
options:scheduler.serverList(“trattamenti”)},
{name:“timeD”, height:72, type:“time”, map_to:“auto”}
{name:“trattamentiE”, height:21, map_to:“trattamenti”, type:“select”,
options:scheduler.serverList(“trattamenti”)},
{name:“timeE”, height:72, type:“time”, map_to:“auto”}
]
I want insert in my table events the five new records when i save.
Thank you in advance.