DHTMLX Accordion within Lightbox

Hi,

I am mapping quite a lot of custom fields within the Lightbox, so much so that the Lightbox is becoming oversized. Could I implement an (or multiple) Accordion Elements to divide the custom fields.

Thanks for any help.

[code]scheduler.config.lightbox.sections=[
//ADMIN OPTIONS AREA
{ name:“sePAL”, height:26, map_to:“ePAL”, type:“textarea” , default_value: “PAL_XXXX”},
//TEXT AREA TO TEMPLATE IN PRESS-OPERATOR SCHEDULER
//{ name:“sePAL”, height:26, map_to:“ePAL”, type:“template” , default_value: “PAL_XXXX”},
{ name:“seDes”, height:35, map_to:“eDes”, type:“textarea”},
//TEXT AREA TO TEMPLATE IN PRESS-OPERATOR SCHEDULER
//{ name:“seDes”, height:35, map_to:“eDes”, type:“template”},
{ name:“seSheets”, height:26, length:30, map_to:“eSheets”, type:“textarea”},
//TEXT AREA TO TEMPLATE IN PRESS-OPERATOR SCHEDULER
//{ name:“seSheets”, height:26, length:30, map_to:“eSheets”, type:“template”},

		//PRESS OPERATOR OPTIONS AREA LABELS
		{ name:"selectme", height: 58, options: press_operator, map_to:"p_Operator", type:"radio", vertical: true },
		{ name:"sdMr", height:26, map_to:"dMr", type:"textarea" , default_value: "0"},
		{ name:"sdRun", height:26, map_to:"dRun", type:"textarea" , default_value: "0"},
		{ name:"sdWup", height:26, map_to:"dWup", type:"textarea" , default_value: "0"},
		{ name:"sdBd", height:26, map_to:"dBd", type:"textarea" , default_value: "0"},
		{ name:"sdMain", height:26, map_to:"dMain", type:"textarea" , default_value: "0"},
		{ name:"sdCust", height:26, map_to:"dCust", type:"textarea" , default_value: "0"},
		{ name:"sdPlatesW", height:26, map_to:"dPlatesW", type:"textarea" , default_value: "0"},
		{ name:"sdCuttingF", height:26, map_to:"dCuttingF", type:"textarea" , default_value: "0"},
		{ name:"sdKnifeOn", height:26, map_to:"dKnifeOn", type:"textarea" , default_value: "0"},
		{ name:"sdInkMix", height:26, map_to:"dInkMix", type:"textarea" , default_value: "0"},
		{ name:"sdOther", height:26, map_to:"dOther", type:"textarea" , default_value: "0"},
		{ name:"sdTotal", height:23, map_to:"dTotal", type:"template"},
		{ name:"sdOtherComments", height:50, map_to:"dOtherComments", type:"textarea" , focus:false},
		{ name:"sdCounterStart", height:26, map_to:"dCounterStart", type:"textarea" , focus:false},
		{ name:"sdCounterFinish", height:26, map_to:"dCounterFinish", type:"textarea" , focus:false},
		{ name:"checkme", map_to:"check_Komplete", type:"checkbox", checked_value: "COMPLETE", unchecked_value: "UNCOMPLETE" },[/code]

There is no such built in functionality.
I think you can create custom section which holds multiple events, it will take less space.
docs.dhtmlx.com/doku.php?id=dhtm … om_editors

Also you can try to use
scheduler.config.wide_form = true;
which will increase width, but decrease height of the form.
docs.dhtmlx.com/doku.php?id=dhtm … endly_form

Thanks for the reply,
I think to achieve the functionality required I will attempt to build a separate modification page using dhtmlxSuite and just link into the same DB. Keep the scheduler clean and pull the bare minimum of data required.

Cheers again.