combo in toolbar: text selection don't work in IE/Firefox

When a combo is placed in a toolbar, with IE and FIrefox text selection inside the combo is not allowed (it is possible with chrome).

Try this code:

Please, add the next style to your toolbar:

.dhx_toolbar_base_dhx_blue div.dhx_toolbar_text { -moz-user-select: text; }

and the next line to the init of your combo:

comboDIV.onselectstart = null;

Thanks a lot.