Navigation

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

    Topics created by rcpinheiro

    • R

      How to prevent a page from scrolling?
      Onsen UI • ons-page scroll • • rcpinheiro

      3
      0
      Votes
      3
      Posts
      2005
      Views

      R

      @markus said in How to prevent a page from scrolling?: $(".page__content").css(“overflow”,“none”); Thanks! That alone won’t work but led me to a solution: var height; function lockScroll() { height=$(".page__content").css("height"); $(".page__content").css("height","100%"); $(".page__content").css("overflow","none"); } function unlockScroll() { $(".page__content").css("height",height); $(".page__content").css("overflow","auto"); } Problem solved!
    • R

      Change animation of ons-splitter
      Onsen UI • ons-splitter • • rcpinheiro

      3
      0
      Votes
      3
      Posts
      1908
      Views

      R

      @emccorson Thanks a lot!
    • R

      cordova-plugin-googlemaps: error on browser
      Monaca Tools • google maps cordova-plugin-googlemaps • • rcpinheiro

      1
      0
      Votes
      1
      Posts
      2205
      Views

      No one has replied

    • R

      Onsen and Google's AMP
      Onsen UI • onsen amp • • rcpinheiro

      2
      0
      Votes
      2
      Posts
      2971
      Views

      E

      AMP isn’t supported right now. The way Onsen UI works is that Onsen custom elements get compiled into regular HTML elements. To support AMP, it would need to be changed so that anything that currently compiles to an element that is outlawed by AMP instead compiles to the AMP equivalent. If this is something you think should be included in a future Onsen release, please make an issue for it at https://github.com/OnsenUI/OnsenUI/issues . Please include in your feature request the reasons you think this would be a good feature for Onsen, so that we can start a discussion.
    • R

      Autocomplete for ons-search-input
      Onsen UI • autocomplete ons-search-input • • rcpinheiro

      1
      0
      Votes
      1
      Posts
      2447
      Views

      No one has replied

    • R

      Firebase authentication
      Monaca Tools • • rcpinheiro

      1
      0
      Votes
      1
      Posts
      1714
      Views

      No one has replied

    • R

      Dialogflow (fka Api.ai): error during build
      Monaca Tools • api.ai dialogflow • • rcpinheiro

      4
      0
      Votes
      4
      Posts
      3438
      Views

      @rcpinheiro I’ve tested this plugin with Cordova 7.1 and the builds were successful for both iOS and Android. If you have made any configuration related to this plugin in config.xml file, please remove it. That might be the reason why your build failed.
    • R

      Ons-navigator to load a different page according to hash
      Onsen UI • ons-navigator • • rcpinheiro

      3
      0
      Votes
      3
      Posts
      3224
      Views

      R

      @asialgearoid Thanks for the reply. After much trial and error, I finally solved the problem: myNavigator.pushPage('home.html', { animation: 'none' }).then(function() { myNavigator.pushPage("user.html",{ animation: 'none', data: { user:... }}).then(function() { ... load user details ... }); }); It’s ugly but it works. The promise is needed or only home.html will appear. I think there is a bug in Ons-navigator. Defining a “page” then pushing a page in the initialization should work. Imho, of course.
    • R

      Geolocation blocked on browser
      Monaca Tools • • rcpinheiro

      5
      0
      Votes
      5
      Posts
      5205
      Views

      R

      @khemry Great, many thanks!
    • R

      Wakeuptimer on Monaca doesn't seem to work
      Monaca Tools • monaca cordova wakeuptimer • • rcpinheiro

      3
      0
      Votes
      3
      Posts
      3132
      Views

      R

      @khemry Thanks! It worked but only when running as a APK, don’t know why it doesn’t work on Custom Debugger.
    • R

      How to get app version number?
      Monaca Tools • • rcpinheiro

      5
      1
      Votes
      5
      Posts
      3874
      Views

      @rcpinheiro You can also test it on custom Monaca Debugger. iOS custom Monaca Debugger Android custom Monaca Debugger
    • R

      Feature Discovery
      Developer Corner • • rcpinheiro

      1
      0
      Votes
      1
      Posts
      1595
      Views

      No one has replied

    • R

      navigator.camera always undefined
      Monaca Tools • • rcpinheiro

      2
      0
      Votes
      2
      Posts
      2174
      Views

      I tested the project with Camera plugin without any issue. Do you still have the issue? If so, would you please tell me your device information such as model and OS version. Thanks.
    • R

      Geolocation doesn't work in Android 6.0 (API 23+)
      Monaca Tools • • rcpinheiro

      1
      0
      Votes
      1
      Posts
      1693
      Views

      No one has replied

    • R

      Android build doesn't start
      Monaca Tools • • rcpinheiro

      1
      0
      Votes
      1
      Posts
      1608
      Views

      No one has replied