onchange of FilteringSelect do not work

Posted by vusan on Stack Overflow See other posts from Stack Overflow or by vusan
Published on 2013-06-26T07:01:04Z Indexed on 2013/06/26 10:21 UTC
Read the original article Hit count: 192

Filed under:
|

Same code I'm using of dojo documentation
just downloaded code work fine but onchange event do not fire on my project.
I have make it to work by firing onblur onBlur: function(){alert(3)}
What thing may cause onchange event not fire?

var filteringSelect = new FilteringSelect({
        id: "stateSelect",
        name: "state",
        value: "CA",
        store: stateStore,
        searchAttr: "name",     
        onChange: function(){alert(3)}
    }, "stateSelect");

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about dojo