TextArea field inside custom field in lightbox sections

Hi,

I am having TextArea inside the custom type editor as shown below. But amazinlgy textarea border is invisible. It seems that editor “text” style is not accepting textarea as inner thing in div.

Please let me know how to fix this.

var customfields = “

”;
customfields += “”;
customfields += “

There is next style in dhtmlxscheduler.css

.dhx_cal_ltext textarea{ background-color:transparent; overflow:auto; border:none; color:#887A2E; height:100%; width:100%; outline:none !important; }

the last line , may affect the border of your custom textarea, you can try to remove it

Hi,
I think i phrased my question wrongly. Actually i am having description section map_to “text” and type is customised.

And this appointmentdetails_editor is having div which contains textarea.

scheduler.config.lightbox.sections = [
{ name: “time”, height: 100, type: “calendar_time”, map_to: “auto” },
{ name: “description”, height: 600, map_to: “text”, type: “appointmentdetails_editor”, focus: true }

Style “.dhx_cal_ltext textarea” will be applied to all textareas inside the lightbox, including the one in your custom form block. So if you have some visual problems with textarea in the custom form block - still try to alter styles of above mentioned css rule.

Thanks, It is working…