Hi,
I have a custom lightbox:
var lightboxsections = [
{name:"text", height:150, map_to:"text", type:"textarea" , focus:true},
{name:"type", height:21, map_to:"typeofevent", type:"select", options:
option
},
{name:"recurring", height:115, type:"recurring", map_to:"rec_type", button:"recurring"},
{name:"time", height:72, type:"time", map_to:"auto"}
];
My scheduler is inside a dhtmlxlayout:
var dhxLayout = new dhtmlXLayoutObject(document.body, "5I");
dhxLayout.cells("c").attachScheduler();
dhxLayout.cells("a").setHeight(80);
dhxLayout.cells("e").setHeight(140);
dhxLayout.cells("b").setWidth(200);
dhxLayout.cells("d").setWidth(200);
All this means that when I open the ‘recurring’ section – the save/cancel/delete options are now off the screen and cannot be accessed.
What options do I have ?
Thanks,