Notice: The Monaca & Onsen UI Community Forum is shutting down.
For Onsen UI bug reports, feature requests and questions, please use the Onsen UI GitHub issues page. For help with Monaca, please contact Monaca Support Team.
Thank you to all our community for your contributions to the forum. We look forward to hearing from you in the new communication channels.
ons-select not firing change event
-
I’m using the javascript version.
The select appears to be declared properly (is displayed as expected in the browser, chrome) but when an option is changed the
onchange
event is never fired.<ons-row id="ph-row"> <ons-col style="padding: 10px;"> <div class="label">Swap with</div> <ons-select id="ddlSwapWith" onchange="ddlSwapWithChange(event)"> <option value="0">select...</option> </ons-select> </ons-col> </ons-row>
There are no errors or any other signs of an issue in the js console.
The other events in the app appear to be working so I’m not sure what the deal is.
The app structure (housed in the js directory):
* html directory housing views (where select is defined)
* app.js (where event funtions are defined)
* controllers.js
* services.js
-
This works: https://onsen.io/v2/api/js/ons-select.html#main
May be your js file is not linked or the function is not declared properly. I suggest you create a CodePen to show the issue.