Navigation

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

    emccorson

    @emccorson

    administrators

    18
    Reputation
    287
    Posts
    3494
    Profile views
    5
    Followers
    0
    Following
    Joined Last Online

    emccorson Follow
    administrators

    Posts made by emccorson

    • RE: Dynamic view update

      The tabbar is currently not written in a way that allows for dynamically added tabs. This is something that we are considering for a future release but unfortunately it is not possible right now with the plain JS version of Onsen UI.

      posted in Onsen UI
      E
      emccorson
    • RE: Fail while building iOS release

      Since you are on Pro plan, it might be easiest to open a support ticket with Monaca Support Team. They will be able to access your project and debug it. From the information you provided here it’s not possible to say what the problem is. If you need further help, please let us know.

      posted in Monaca Tools
      E
      emccorson
    • RE: Create "stackable" pages with Cordova + Onsen UI?

      There is nothing like this in Onsen UI as far as I know. Actually, I’m not sure what you would call this effect either. Can you tell me what app uses this effect as an example?

      posted in Onsen UI
      E
      emccorson
    • RE: Ionic 3 + Angular 5. SQLite open database

      If the plugin variable is undefined, check the following:

      1. The plugin is being installed during the build. You should see it in the build log.

      2. You are accessing the plugin variable after the deviceready event. You can make sure of this by adding an event listener and using the plugin variable in the callback function e.g.:

      document.addEventListener(‘deviceready’, () => {
      // call the variable here
      });

      1. You are calling the correct variable. You can verify the correct variable by going to the plugin’s plugin.xml file (usually available on the plugin’s GitHub page) and checking the target of the clobbers tag e.g.:

      <clobbers target=“FirebasePlugin” />

      This means the variable is window.FirebasePlugin.

      1. If you are using Monaca Debugger, make sure you are using a Custom Build Debugger, not the App Store version of the Debugger. The App Store version only includes the core plugins, not third-party plugins, so you need to create a Custom Build Debugger by selecting the ‘Custom Build Debugger’ option from the Build for iOS or Build for Android page. This will create a version of Monaca Debugger with all your project’s plugins.
      posted in Developer Corner
      E
      emccorson
    • RE: Line Length HTML Problem - editor.maxTokenizationLineLength

      Unfortunately it doesn’t seem there is much that can be done about it from the user-end. I meant that if you manually split the lines (so you don’t have very long lines), it shouldn’t be a problem - is that the case?

      posted in Monaca Tools
      E
      emccorson
    • RE: Line Length HTML Problem - editor.maxTokenizationLineLength

      It’s specifically a setting in Monaca Cloud IDE, but I believe that it is not possible for users to set it. Is there still a problem once you split the lines?

      posted in Monaca Tools
      E
      emccorson
    • RE: Line Length HTML Problem - editor.maxTokenizationLineLength

      It looks like the only editor configuration that can be done is through the Config -> Workspace Configuration page but unfortunately it doesn’t seem to include the setting you need. I think the editor used internally is Monaco (with an ‘o’) so you may be able to find some help in its documentation.

      posted in Monaca Tools
      E
      emccorson
    • RE: REPORTING FAKE CONTENT

      Thank you for the report. We have now removed the spam account.

      posted in Monaca Tools
      E
      emccorson
    • RE: How to remove background from image?

      I’m not sure I understand your question - can you please explain in more detail what you want to do?

      posted in Monaca Tools
      E
      emccorson
    • RE: Android Release Build

      It looks like this might be a problem with cordova.plugins.diagnostic 6.0.2. Please try updating your package.json to refer to cordova.plugins.diagnostic 6.0.4.
      See here for more details:
      https://github.com/dpa99c/cordova-diagnostic-plugin/issues/440

      swadeshkamlesh created this issue in dpa99c/cordova-diagnostic-plugin

      closed AAPT: error: resource android:attr/lStar not found #440

      posted in Monaca Tools
      E
      emccorson