Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<ol> <li>Using a normal "select" is not an option as I need to change the options dynamically which really is a pain with a normal select. I'd also like all selects on the page to look the same.</li> <li>dijit.FilteringSelect will not show the same error but requires a different handling of changing the options dynamically. I also don't like the dropdown being an input field.</li> </ol> <p>So I've come up with the following workaround, which still is not an acceptable solution but at least something I can live with for now:</p> <pre><code>&lt;div dojoType="dijit.form.DropDownButton" id="DropDownButton"&gt; &lt;div dojoType="dijit.TooltipDialog" id="tooltip"&gt; &lt;input dojoType=dijit.form.TextBox type="text" id="textbox"&gt; &lt;select id="select" dojoType="dijit.form.Select" onChange="dijit.byId("DropDownButton").openDropDown();"&gt; &lt;option value="1"&gt;1&lt;/option&gt; &lt;option value="2"&gt;2&lt;/option&gt; &lt;/select&gt; &lt;button dojoType="dijit.form.Button" type="submit" id="button"&gt;click&lt;/button&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <ol> <li>dijit.Toolbar was removed, as it was of no use.</li> <li>the Select will now call the DropDownButton's method "openDropDown" onChange, showing the TooltipDialog again.</li> </ol> <p>Now I'm able to use the TooltipDialog in IE - but still one issue remains: the TooltipDialog remains hidden in IE until I move the mouse a pixel. But at least I don't have to click on the button again to open the dialog.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload