Navigation

    Monaca & Onsen UI
    • Login
    • Search
    • Tags
    • Users
    • Blog
    • Playground
    1. Home
    2. Tags
    3. cordova

    • L

      Can anyone make me a basic JQueryMobile template with a few plugins.
      Monaca Tools • cordova plugins help keyboard advice jquery mobile temp project footer header • • Lammie71

      1
      0
      Votes
      1
      Posts
      507
      Views

      No one has replied

    • Camera cannot be authorized
      Developer Corner • cordova error camera • • munsterlander

      2
      0
      Votes
      2
      Posts
      1227
      Views

      @munsterlander Solved: https://stackoverflow.com/questions/57838790/camera-works-in-monaca-debugger-but-not-in-debug-build/57847276#57847276
    • Social Sharing, social authentication
      Monaca Tools • cordova vue onsen ui 2 vue-onsenui cordova plugins • • mejuliver

      1
      0
      Votes
      1
      Posts
      987
      Views

      No one has replied

    • N

      Deploying Onsen UI to android through Cordova
      Developer Corner • cordova vue android • • nightrobin

      3
      0
      Votes
      3
      Posts
      1643
      Views

      N

      @rcpinheiro Thanks I tried this and it works. My mistake is that I copied the whole project to www, I should have copied only the files under the dist folder (after running ‘npm run build’ in onsen)
    • J

      v-ons-tabbar is being hidden by the v-ons-toolbar
      Onsen UI • cordova vue css vue-onsenui • • jmlds

      1
      0
      Votes
      1
      Posts
      938
      Views

      No one has replied

    • Instant app exit! Need confirmation how to do?
      Monaca Tools • cordova cloud ide javascr exit button • • Lakaroth

      2
      0
      Votes
      2
      Posts
      1574
      Views

      @lakaroth said in Instant app exit! Need confirmation how to do?: document.addEventListener(“backbutton”, function (e) { e.preventDefault(); navigator.notification.confirm(“Are you sure want to exit from App?”, onConfirmExit, “Confirmation”, “Yes,No”); }, false); Try: $(document).on(“click”, “#backbutton”, function (e) { navigator.notification.confirm(“Are you sure want to exit from App?”, onConfirmExit, “Confirmation”, “Yes,No”); }, false);
    • C

      How to install Cordova Pushwoosh Push Notifications plugin
      Monaca Tools • cordova notifications pushnotification-cordova pushwoosh • • carlosflores

      3
      0
      Votes
      3
      Posts
      1867
      Views

      @carlosflores Hi, the error is caused by <config-file> settings with no target defined in config.xml within the plugin. They are breaking plugins. For more information about this issue, please refer to this thread. In short, you will need to modify the config.xml file of the plugin and make sure that every <config-file> setting has defined a target.
    • C

      Pluging installation
      Monaca Tools • cordova plugins pushnotification-cordova • • carlosflores

      5
      0
      Votes
      5
      Posts
      2874
      Views

      @carlosflores So I’ve just tried to import the plugin myself. You don’t need any configuration regarding this plugin in config.xml file. Then, add cordova-plugin-enable-multidex plugin to your project. This way the build will succeed.
    • R

      tabbar issue when app is started in background
      Onsen UI • cordova ons-tabbar android background • • reepeg

      1
      0
      Votes
      1
      Posts
      1466
      Views

      No one has replied

    • J

      Device back button exits app in debug build
      Developer Corner • cordova vue onsen • • Jacob Edholm

      3
      0
      Votes
      3
      Posts
      2169
      Views

      J

      The problem was that the kitchensink project doesn’t include cordova.js as it is made for browsers. The back button problem was solved by simply including “<script src=”./components/loader.js"></script>" in my index.html
    • R

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

      3
      0
      Votes
      3
      Posts
      1965
      Views

      R

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

      Unsolved OnsenUIをIE11で動かしたい
      Onsen UI • onsen ui cordova ie11 polyfill • • imanishik

      7
      0
      Votes
      7
      Posts
      12429
      Views

      I

      引き続き確認したところ、IE11にて以下の問題が発生しました。 ons-rangeを表示し操作したところ、スライダーボタンの移動がレンジの線に正常に反映されませんでした。 確認時のソースはリファレンスの物をそのまま使用しています。 原因を調べたところ、OnsenUI側で操作による画面更新(RangeElementの_update)が呼び出されていませんでした。 具体的には以下のイベント登録によるユーザー側の操作イベント(input)が発生しないようです。 var RangeElement = function (_BaseInputElement) { key: 'connectedCallback', value: function connectedCallback() { this.addEventListener('input', this._boundOnInput);// not working on IE11 この問題はIE11でのみ発生し、他のモダンブラウザ(ChromeやEdge)では発生しません。 対策として動作環境がIE11の場合は、changeイベントをリスナー登録する必要があるようです。 var RangeElement = function (_BaseInputElement) { key: 'connectedCallback', value: function connectedCallback() { this.addEventListener('input', this._boundOnInput); // for IE11 if (ons.platform.isIE()){ this.addEventListener('change', this._boundOnInput); } これにより、レンジのスライダー操作のイベントを取得する事が出来、現在のスライダーの位置に正常にレンジの線が表示されました。
    • J

      change element proprierty according network status
      Onsen UI • onsen ui cordova javascript html5 cordova plugins network information • • Jonathan Silva

      3
      0
      Votes
      3
      Posts
      2069
      Views

      J

      @Fran-Diox , thanks for your explanation. Yes, my project is using the Onsen UI v1, but it’s possible to change the main-page content by a function on onsen ui framework? I did it before, into a project-based in cordova 6, and worked well.
    • Develop even more powerful apps with Cordova 6.5
      News & Announcements • monaca cordova cloud ide hybrid app cordova 6.5 platform • • khemry

      8
      0
      Votes
      8
      Posts
      3295
      Views

      ?

      A moving company is a service that moves all your packed belongings straight to your new residence. While there are dozens of companies that offer moving services, not all of them are reliable. hire Cheap movers in Auckland for the easy moving of your home and office
    • M

      Need to open link from inappbrowser in default system browser
      Monaca Tools • monaca cordova external link inappbrowser browser link • • makstakeda

      5
      0
      Votes
      5
      Posts
      16246
      Views

      J

      Hi, this answer may come bit late but the question is still valid and this may help someone. First, install Cordova InAppBrowser: cordova plugin add cordova-plugin-inappbrowser Then replace the window.open (this step is not necessary, but it makes things simplier) window.open = cordova.InAppBrowser.open; Then you can call: <a href="https://google.com" onclick="window.open('https://google.com', '_system'); return false;">Google</a> I have written more detailed blog article about the issue here
    • Enhanced Cordova App Security with SSL Certificate Pinning
      Monaca & Onsen UI Articles • monaca cordova ssl • • Andi

      1
      0
      Votes
      1
      Posts
      1362
      Views

      No one has replied

    • R

      Proxiway - A Geo-fencing Based app designed using OnsenUI
      Showcase • cordova onsen ui 2.0 material design jquery performance • • rajatkosh

      9
      0
      Votes
      9
      Posts
      6567
      Views

      Z

      Rajatkosh just saw your website. Are you still using Onsen, because all I could see was bootstrap?
    • S

      Open GPS enable setting page of mobile in onsen UI
      Developer Corner • onsen ui cordova onsen ui 2.0 onsen2 onsen1 • • sagar

      1
      0
      Votes
      1
      Posts
      2153
      Views

      No one has replied

    • S

      Unsolved Monaca CLI + 3rd Party Plugins
      Monaca Tools • cordova monaca cli plugins • • sj.meyer

      6
      0
      Votes
      6
      Posts
      4391
      Views

      @sj.meyer Also, if you want a quick way to get started, you can just add this to your project: <link rel="stylesheet" href="https://cdn.rawgit.com/OnsenUI/OnsenUI-dist/2.0.0/css/onsenui.css" type="text/css" media="all" /> <link rel="stylesheet" href="https://cdn.rawgit.com/OnsenUI/OnsenUI-dist/2.0.0/css/onsen-css-components.css"> <script src="https://cdn.rawgit.com/OnsenUI/OnsenUI-dist/2.0.0/js/onsenui.js"></script>
    • S

      Unsolved Onsen 2 - Monaca CLI - Cordova plugins weird behavior
      Monaca Tools • cordova onsen ui 2.0 monaca cli plugins • • sj.meyer

      1
      0
      Votes
      1
      Posts
      1680
      Views

      No one has replied