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.
How do I find component event descriptions in the document?
-
Hi,How do I find component event descriptions in the document?
-
@czpae86 In the reference page of each element there is an “Events” section.
-
Some do not specify. such as ons-range element,How to capture change events?
-
@czpae86 Only the custom events are specified, the native ones are assumed. Just capture it normally with
addEventListener
oronchange
handler.Edit: Actually, the range only throws
change
when you release the drag. If you want something continuous useinput
event instead.