Navigation

    Monaca & Onsen UI
    • Login
    • Search
    • Tags
    • 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 temp jquery mobile advice project footer header • • Lammie71

      1
      0
      Votes
      1
      Posts
      1792
      Views

      No one has replied

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

      2
      0
      Votes
      2
      Posts
      2835
      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
      2374
      Views

      No one has replied

    • N

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

      3
      0
      Votes
      3
      Posts
      3992
      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
      2280
      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
      3475
      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 pushnotification-cordova notifications pushwoosh • • carlosflores

      3
      0
      Votes
      3
      Posts
      3662
      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
      5461
      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
      2721
      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
      3866
      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
      3529
      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
      20113
      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
      3919
      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 platform hybrid app cordova 6.5 • • khemry

      10
      0
      Votes
      10
      Posts
      7387
      Views

      People Expect Good Service But Few Are Willing To Give It We could convert your creative ideas of website development into the perfect digital face of your brand. Visit The Website Mart to get your own website development and marketing of your website SEO, PPC and also social media marketing at an affordable cost.
    • M

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

      5
      0
      Votes
      5
      Posts
      22757
      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
      2937
      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
      10524
      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
      3644
      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
      7078
      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>