Login Register

FilteringSelect bug when part of dnd.Source

[editor: moving to the appropriate forum...]

I've discovered a strange bug with the FilteringSelect component. It works fine when used outside of dnd.Source / dojoDndItem. When used in this context, the text entry field is not editable. Here's the sample code and I'm using tundra as css.

<div dojotype="dojo.data.ItemFileReadStore" jsid="fundStore" url="mf/search.txt">
<div class="Cols">
<!-- Does not work! -->
<div accept="FIG" dojotype="dojo.dnd.Source" jsid="col1">
<div class="dojoDndItem" dndtype="FIG" id="c3001">
<div class="GadgetBorder">
<div class="GadgetTitle">
Select a blah blah...
</div>
<div class="GadgetContent" id="c3001.content">
<div class="square">
<input autocomplete="true" dojotype="dijit.form.FilteringSelect" hasdownarrow="false" id="fund1" name="fidfunds" onchange="findFund(dojo.byId('fund1').value);" searchattr="label" searchdelay="300" store="fundStore" />
<hr />
<div id="fname">Name</div>
</div>

</div>

</div>
<p>
</p></div>
</div>
</div>

<div class="Cols">
<!-- Good -->
<div class="GadgetContent" id="c3001.content">
<div class="square">
<input autocomplete="true" dojotype="dijit.form.FilteringSelect" hasdownarrow="false" id="fund" name="fidfunds" onchange="findFund(dojo.byId('fund').value);" searchattr="label" searchdelay="300" store="fundStore" />
<hr />
<div id="fname">Name</div>
</div>
</div>
</div>

</div>

No answer: FilteringSelect bug when part of dnd.Source

Anyone?