Navigation

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

    FranciscoValdes

    @FranciscoValdes

    0
    Reputation
    2
    Posts
    581
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    FranciscoValdes Follow

    Posts made by FranciscoValdes

    • Has Someone a example???, How can I work with myNavigator.on('prepush' ....., thank you.

      I’m new to this platform, Someone can help me ??

      How can I work with myNavigator.on(‘prepush’ …, thank you. I need to load data from database before of that the page load.

      Thank you.

      posted in Developer Corner
      F
      FranciscoValdes
    • Problem with ons.ready ...

      Hi, I have a problem with ons.ready, this doesn’t load, the following is my code:

      <!DOCTYPE html>
      <!-- CSP support mode (required for Windows Universal apps): https://docs.angularjs.org/api/ng/directive/ngCsp -->
      <html lang=“en” ng-app=“app” ng-csp>
      <head>
      <meta charset=“utf-8” />
      <meta name=“apple-mobile-web-app-capable” content=“yes” />
      <meta name=“mobile-web-app-capable” content=“yes” />
      <!-- JS dependencies (order matters!) -->
      <script src=“scripts/platformOverrides.js”></script>
      <script src=“lib/angular/angular.js”></script>
      <script src=“lib/onsen/js/onsenui.js”></script>
      <!-- CSS dependencies -->
      <link rel=“stylesheet” href=“lib/onsen/css/onsenui.css” />
      <link rel=“stylesheet” href=“lib/onsen/css/onsen-css-components.css” />
      <link rel=“stylesheet” href=“lib/onsen/css/onsen-css-components-blue-basic-theme.css” />
      <!-- CSP support mode (required for Windows Universal apps) -->
      <link rel=“stylesheet” href=“lib/angular/angular-csp.css” />
      <script src=“lib/jquery/jquery-2.1.4.min.js”></script>
      <script src=“scripts/index.js”></script>

      <!-- --------------- App init --------------- -->
      <title>Onsen UI Sliding Menu</title>
      <script>
          angular.module('app', ['onsen']);
          ons.bootstrap();
          ons.ready(function () {
              alert('hola');
              var content = document.getElementById('content');
              content.innerHTML = "<ons-button>Another button</ons-button>";
          });
          
      </script>
      posted in Onsen UI
      F
      FranciscoValdes