Navigation

    Monaca & Onsen UI
    • Register
    • Login
    • Search
    • Tags
    • Users
    • Blog
    • Playground
    1. Home
    2. operun
    3. Topics
    O
    • Flag Profile
    • Profile
    • Following
    • Followers
    • Blocks
    • Topics
    • Posts
    • Best
    • Groups

    Topics created by operun

    • O

      How to get/set "checked" state on "button-bar" - component from AngularJS ?
      Onsen UI • angular button-bar • • operun

      2
      0
      Votes
      2
      Posts
      3939
      Views

      I know you wanted Angular, but this is how in JS: document.querySelector('input[name=segment-a]:checked').value Hopefully, this helps or gets you started.
    • O

      Solved When in Monaca Cloud will be available Onsen UI Ver=2.0.0-beta.5 ?
      Onsen UI • • operun

      3
      0
      Votes
      3
      Posts
      3120
      Views

      @operun thank you for reporting this! I’ll update Onsen UI in Monaca Cloud IDE in the next couple of days. :)
    • O

      Solved Onsen UI v2, stopped working document.getElementById("id")
      Onsen UI • • operun

      8
      0
      Votes
      8
      Posts
      8483
      Views

      J

      This error TypeError: document.getelementbyid(…) is null would seem to indicate that there is no such element with an ID passed to getElementById() exist. This can happen if the JavaScript code is executed before the page is fully loaded, so its not able to find the element. The solution is that you need to put your JavaScript code after the closure of the HTML element or more generally before < /body > tag.