Navigation

    Monaca & Onsen UI
    • Login
    • Search
    • Tags
    • Users
    • Blog
    • Playground
    1. Home
    2. mjessen
    M
    • Flag Profile
    • Profile
    • Following
    • Followers
    • Blocks
    • Topics
    • Posts
    • Best
    • Groups
    Save
    Saving

    mjessen

    @mjessen

    1
    Reputation
    17
    Posts
    1109
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    mjessen Follow

    Posts made by mjessen

    • Scrolling problem with iPhone SE

      Hello,

      i have a strange problem with the iOS Version of my App. The scrolling of the page content is not possible by touch. It only works with the scrollbar on the right side of the page. This happens only on the iPhone SE with iOS 12.1 (so far). On my iPhone 8 it works fine.

      Any idea why this happens?

      posted in Onsen UI
      M
      mjessen
    • iOS App upload

      Hi,

      currently i am using the developer plan to manage my apps and i am very satisfied with the service. Thanks for the good work. I have seen the “Monaca Upload Feature” in the docs and noticed that the payment is per app. Now i am wondering if the payment is linked to an app id?

      The scenario i am thinking about is the following. I upload an app (app id = “de.ggApps.testapp”) to the monaca IDE and buy the “Monaca Upload Feature” for this app. Now i delete the app from the IDE and upload the app with the same app id to the IDE again. Is the service still enabled?

      Thank you

      posted in Monaca Tools
      M
      mjessen
    • RE: How to navigate within pages

      You can handle the tabbar visibility with the following code

      document.querySelector('#yourTabbarId').setTabbarVisibility(true)
      

      Maybe it is better to this inside the prepush-Event and not inside the init

      posted in Onsen UI
      M
      mjessen
    • RE: How to navigate within pages

      You need an ons-navigator element to implement a stack navigation to your app. You can find an example in the documentation ons-navigator

      In most of my apps i use a tabbar as main navigation and the stack navigation to push/pop sub-pages. To do so i set the ons-navigator element in my index and use the tabbar as page:

       <ons-navigator id="navigator" page="tabbar.html"></ons-navigator>
      

      Now you can use a querySelector to access the navigator and handle your stack management. Here is an example of pushing a page to your stack:

      document.querySelector('#navigator').pushPage('yoursubpage.html', {data: {title: 'subpage Title', content: 'subpage content'}});
      

      In the documentation is shown how you can set an “init”-eventListener to get the pushed data. In my example the “title” and the “content” i want to set on the page. Hope this helps…

      posted in Onsen UI
      M
      mjessen
    • RE: GOOGLE_PLAY_SERVICE_VERSION

      I solved it by readding the plugin with variable and the cordova-platform to the project.

      1. Removing the plugin and the cordova-android platform from the project
      2. Add the plugin with GOOGLE_PLAY_SERVICES_VERSION variable:
      cordova plugin add cordova-plugin-mauron85-background-geolocation@3.0.0-alpha.7 --variable GOOGLE_PLAY_SERVICES_VERSION="11.0.1"
      
      1. Add the cordova-android platform
      posted in Monaca Tools
      M
      mjessen
    • GOOGLE_PLAY_SERVICE_VERSION

      Hi,

      i want to use the cordova-plugin-background-geolocation v3 in a custom debugger. The build on my machine with “cordova build android” works without any failure and i can even run the app on a device. Only within the build for the custom debugger i get the following problem:

      * What went wrong:
      A problem occurred evaluating root project 'android'.
      > Could not get unknown property 'GOOGLE_PLAY_SERVICES_VERSION' for object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
      

      In my config.xml i included the “GOOGLE_PLAY_SERVICES_VERSION” variable to the plugin which is mentioned in the documentation of the plugin (https://github.com/mauron85/cordova-plugin-background-geolocation/tree/df16ba2a294c4596622436677f364e66ea415935) .

      Do i need another plugin to solve this problem? Or does anyone know how to solve this problem or can give me any advice?

      Thank you

      posted in Monaca Tools
      M
      mjessen
    • RE: monaca debugger inspector - websocket_closed

      @khemry
      I created a monaca/onsenui example project from the cli and the inspector works fine. So it seems that the connection between the localkit and my device is okay and the problem is related to my project. Any idea what i did wrong in my project? Thank you

      posted in Monaca Tools
      M
      mjessen
    • RE: monaca debugger inspector - websocket_closed

      @khemry
      i checked the ip’s and hosts. “netstat” is showing me that my device is connected to the computer with the right ip and port :8001. Also my investigation into our local network settings does not help. I am happy for any idea. Thanks

      posted in Monaca Tools
      M
      mjessen