Navigation

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

    quince

    @quince

    0
    Reputation
    11
    Posts
    841
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online
    Location Serbia

    quince Follow

    Posts made by quince

    • RE: AngularJS or pure Javascript for multiple HTML files?

      @FernandoFactor maybe this example will use you https://docs.monaca.io/en/sampleapp/samples/ibeacon/

      posted in Onsen UI
      quince
    • RE: Push notifications general question

      @Andi
      Tnx :thumbsup:

      posted in Monaca Tools
      quince
    • Push notifications general question

      Is there a way to send and receive push notifications without using monaca push notifications, i.m using monaca cloud ide, free account, and i need something like this

      when user in client app send request to php server, that server connects with google firebase cloud messaging and send notification to admin app, and when admin do what is need, sends request back to server and same again, server connects to fcm and notification goes to client app

      is this possible to do with monaca free plan, and if is which plugin to use for push notifications

      thanks

      posted in Monaca Tools
      quince
    • RE: Monaca build error

      i had similar problem and solved with reference to monaca-core-utils.js

      posted in Monaca Tools
      quince
    • RE: ons-tabbar tabs problem on destroy

      problem is @
      www/components/monaca-onsenui/js/angular-onsenui.js:7847

      i looked here

      and in www/components/monaca-onsenui/js/onsenui.js

      but i don’t have a clue, everything i see is that ‘The loadPage method has been deprecated and will be removed in the next minor version.’ and it looks to me that it might be a problem

      posted in Onsen UI
      quince
    • RE: ons-tabbar tabs problem on destroy

      @anderson

      i tried but still the same. actually, i don’t have problem with tabs, they are working properly, its just i’m getting error on leaving page with tabs but even after error messages everything works fine.
      thanks

      posted in Onsen UI
      quince
    • RE: Positioning icons

      There are classes like left, center, right, you can put icons into div class right for example.

      posted in Developer Corner
      quince
    • RE: ons-tabbar tabs problem on destroy

      I forgot to mention, i’m getting 5 same error messages, one for each tab.

      And i found that similar problem exist in ionic and kendo Ui-es, someone says that is just debugging info, like there is no real error…

      posted in Onsen UI
      quince
    • RE: ons-tabbar tabs problem on destroy

      @anderson

      Hi, here is markaups

              <ons-page>
                 <ons-toolbar style="background-color:#000;">
                      <div class="left">
                          <ons-toolbar-button ng-click="app.menu.toggleMenu()">
                              <ons-icon icon="md-menu"></ons-icon>
                          </ons-toolbar-button>
                      </div>
                      <div class="center toolbarText">Products</div>
                </ons-toolbar>
            
      
                  <div class="content" style="text-align: center">
                      <ons-tabbar>
                          <ons-tab label="Products1" page="tab1.html" active></ons-tab>
                          <ons-tab label="Products2" page="tab2.html"></ons-tab>
                          <ons-tab label="Products3" page="tab3.html"></ons-tab>
                          <ons-tab label="Products4" page="tab4.html"></ons-tab>
                          <ons-tab page="tab5.html" icon="ion-ios-cart-outline"></ons-tab>
                      </ons-tabbar>
                  </div>
              </ons-page>
          </ons-template>
      
      
      <ons-template id="tab1.html">
                 <ons-page id="tab1">
                 </ons-page>
      </ons-template>
      
      <ons-template id="tab2.html">
                 <ons-page id="tab2">
                 </ons-page>
      </ons-template>
      
      <ons-template id="tab3.html">
                 <ons-page id="tab3">
                 </ons-page>
      </ons-template>
      
      <ons-template id="tab4.html">
                 <ons-page id="tab4">
                 </ons-page>
      </ons-template>
      
      <ons-template id="tab5.html">
                 <ons-page id="tab5">
                 </ons-page>
      </ons-template>
      

      At first these tab pages (tab1.html…) was inside of products.html right under ons-tabbar closing mark, then i put them outside as separate pages

      by the way, what is proper way of using - inside a page after ons-tabbar or like in this code

      in both way, everything works the same, and i getting same error

      thanks

      posted in Onsen UI
      quince
    • ons-tabbar tabs problem on destroy

      I have app with couple pages, in one page there is ons-tabbar with 5 tabs. For app navigation i use ons-sliding-menu, i don’t have navigator. Everything works fine, no errors, no warnings, except when i navigate from page with tabbar to any other page, then i got **Uncaught TypeError: Cannot read property $destroy of undefined. **

      I think this issue does not have anything with my markups or code as this still happening when tab pages are empty, without anything and only when i navigate from page with tabbar.

      Is there a way to avoid this error, catch maybe or something?
      Thanks

      posted in Onsen UI
      quince