Hi,
When I customize my form wifth a recurring part:
[code] scheduler.config.lightbox.sections=[
{ name:“description”, height:22, map_to:“text”, type:“textarea” , focus:true},
{ name:“mode”, height:22, map_to:“mode_inverse”, type:“select” , options:[
{key:“0”, label:“Détection d’intrus”},
{key:“1”, label:“Présence confirmée”}
]},
{ name:"camera", height:22, map_to:"sc", type:"select" , options:[
{key:“0”, label:“blabla”},
{key:“1”, label:“blabla”},
]},
{name:"reccuring", height:21, type:"select", map_to:"rec_type", options:[
{key:"", label:"Do not repeat"},
{key:"day", label:"Each day"},
{key:"week", label:"Each week"},
{key:"month", label:"Each month"}
]},
{name:"time", height:72, type:"time", map_to:"auto"}
][/code]
The end_date sent to the server is undefined, and the event is not displayed. I cannot figure out why it does not work this way, but the same code with a recurring part like this works:
{name:"reccuring", height:21, type:"select", map_to:"rec_type", button:"recurring"},
Is it a bug or did I make something wrong?
Thanks