dhtmlxCombo integrate to dhtmlxScheduler

Hi Guys,

I have been trying to make this combo box work with scheduler light box but I dont know why the drop down is just not showing…
:blush:

I went thru all the samples and questions on the forum no one seems to have this problem I must be missing something.

I tried using both way to init my combo but same result
scheduler.form_blocks[“my_combo”]={…}

scheduler.config.lightbox.sections=[
{name:“product”, height:22, type:“my_combo”, map_to:“product_id” },
];

Hoping some one could point me in the right direction please.
please see attached (schedularMockUp.zip)

Cheers,
Simon
schedularMockUp.zip (275 KB)

Hello,

First of all - is there a reason you try to create your custom section with lightbox and not use ours?
Check out following sample:
scheduler\samples\02_customization\18_combo_select_from_db.html
Additional information is available on the Combo section page in our documentation.
If you need to customize it’s behavior maybe it would be easier to modify our section - dhtmlxscheduler_editors.js file.

Best regards,
Ilya

Hi Ilya,

Thanks for the reply. I created my own custom section because the Combo section (type:“combo”) didn’t work for me either. On the screen I see a text box appeared instead of a drop down (Capture.JPG).

Is this because I am using dhtmlxCombo 2.6 with dhtmlxScheduler 3 ?

I got the code snipets from…
05_custom_editor.html
15_combo_select.html
18_combo_select_from_db.html

Cheers,
Simon

Hi Ilya,

I found the problem, the dropdown appeared behind the light box.

Regards,
Simon


RESOLVED.

Adding below CSS to the page resolves the problem.

.dhx_combo_list{
z-index:11000;
}

Hello,

I am glad this issue is resolved.
Concerning z-index problem - it should be resolved in the latest version (I’ve checked one available on the site - z-index is added).

Best regards,
Ilya