Hi,
I have a combo loaded using a connector inside a unchecked checkbox item list. The correct behaviour should be that the combo is disabled (due to the unchecked checkbox). Indeed, it does behave this way but if I add the connector option to the combo, this behaviour gets thrown out of the window.
See the simplified code segment below.
...
{ type: "checkbox", name: "loadCheckbox", checked: false, list: [
{ type: "button", name: "load", value: "Load" },
{ type: "combo", name: "loadCombo", connector: "tmp_combo_options.xml" },
]},
...
By right, the combo and the button should appear disabled until the checkbox is checked. However, everything is enabled right from the start.
If I remove the connector option, then everything is correct. How do I get the correct behaviour with the connector option? i.e. everything is disabled on load until the checkbox is checked?
Thanks in advance!