Hello all,
I have a FilteringSelect which I have created from markup like so
<option value="1">aaa</option>
<option value="2">bbb</option>
<option value="3">ccc</option>
</select>
and now I want to add an Item dynamically to this list on the click of a button. I have tried the following.
combo.store.newItem({text:"ddd", value:"4"}, null);
but I get the error "combo.store.newItem is not a function" in firebug.
