Navigation

    Monaca & Onsen UI
    • Register
    • Login
    • Search
    • Tags
    • Users
    • Blog
    • Playground
    1. Home
    2. LittleOldLady
    3. Topics
    L
    • Flag Profile
    • Profile
    • Following
    • Followers
    • Blocks
    • Topics
    • Posts
    • Best
    • Groups

    Topics created by LittleOldLady

    • L

      Where to place custom.js file for separate html page?
      Onsen UI • • LittleOldLady

      8
      0
      Votes
      8
      Posts
      645
      Views

      G

      I have tried LoadJS in my projects, it works fine with OnsenUI. Best Regards Gobi
    • L

      Help with CSS and checkbox
      Onsen UI • • LittleOldLady

      2
      0
      Votes
      2
      Posts
      497
      Views

      E

      You could try generating your own Onsen UI theme here by selecting the Customize option: https://onsen.io/theme-roller/
    • L

      Feature Request: Onsen Playground CSS examples & Documentation
      Onsen UI • • LittleOldLady

      2
      0
      Votes
      2
      Posts
      548
      Views

      E

      What kind of changes are you trying to make in the CSS? If you want to make a new Onsen UI theme, the Theme Roller is the best tool for that: https://onsen.io/theme-roller/
    • L

      How to show date/time automatically using ons-input
      Onsen UI • • LittleOldLady

      2
      0
      Votes
      2
      Posts
      441
      Views

      L

      OK, thanks again to stack overflow, I found the answer to my question. I’m posting it here because I’ve seen other similar questions in the forum that were never answered. Maybe this will help someone else. My onsen-ui Html5: <div style="text-align: center; margin-top: 30px;margin: bottom 0;"> <ons-input type="text" id="date" > </ons-input> </div> <div style="text-align: center; font-size:small; margin-top: 0px;"> <ons-input type="text" id="time" > </ons-input> </div> The code is pure javascript and was posted by a coder (sorry I don’t have his name) on stack overflow. I do not take credit for it, but I’m grateful for his sharing. 😁 // get a new date (locale machine date time) var date = new Date(); // get the date as a string var n = date.toDateString(); // get the time as a string var time = date.toLocaleTimeString(); // find the html element with the id of "date" // set the innerHTML of that element to the date a space the time document.getElementById('date').innerHTML = n; //date document.getElementById('time').innerHTML = time; }); -Rachel
    • L

      How to add an onsen-ui modifier to javascript
      Onsen UI • • LittleOldLady

      3
      0
      Votes
      3
      Posts
      1558
      Views

      In Onsen UI modifiers are applied by adding the modifier characteristic to a component!
    • L

      Collapsible Lists
      Onsen UI • • LittleOldLady

      3
      0
      Votes
      3
      Posts
      1344
      Views

      L

      Thanks for your response. That helped to clarify. I’ll check back later to see if this has been added.