lightbox deselect text

How I can deselect text in lightbox, which is selected by default when lightbox is showing?

Thanks :slight_smile:

Hi,
when the lightbox is shown, scheduler takes the first input and calls it’s ‘focus’ method. Note that is a method of lightbox control, not the html input
docs.dhtmlx.com/scheduler/custom … ditor.html

There is no config for canceling this behavior, although a couple of workarounds can be done.
Probably the simplest solution would be to replace ‘focus’ method of a text control with an empty function:

scheduler.form_blocks.textarea.focus = function(){};