Hi,
I'm looking for a dijit widget which works like a normal html select (combobox). all dijit widgets i found until now, have an editable text box. I prefer to have a drop down box only and no editable textbox.
<select name="aCombobox">
<option value="1" selected="selected">Hund</option>
<option value="2">Katze</option>
<option value="3">Maus</option>
<option value="4">Waldelfe</option>
</select>
Also important for me is, that the upper code is working with the widget and the widget have to use the "Value" values and not the display text.
I checked this dijit widgets: combobutton, combobox, filteringselect, dropdownbutton.
Maybe there is an attribute i forgot to set.
Is there a widget which meet my requirements?