I think this is an IE specific problem…
I have a trigger action that when it happens it will display follow up combobox question (four in total) in a particular area.
However, the initialization of the four select boxes it will error out on the first one.
Using Select input box for the data.
Stating the following “Can’t move focus to the control because it is invisible, not enabled, or of a type that does not accept the focus” combobox.js line 37 char 215
debugging in VS.NET it breaks here
b=c==null;if(a==this.getActualValue())return}this.DOMelem_input.focus();this.DOMelem_hidden_input.value=a;
If I take the wrapper
Now I could initialize them and try to then hide them. But I think that looks really bad, you have a flash of inputs and then they leave.
So, is there a proper way to initialize the control when it is wrapped in a
An example from your samples with the combobox. All I did was take the select box example copy it gave new Id and then wrapped it in a div.
Sample File to use: dhtmlxCombo\dhtmlxCombo\samples\01_initialization\02_combo_init.html
dhtmlxCombo.zip (303 KB)