No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. kayumanggi
    K
    • Profile
    • Following 0
    • Followers 0
    • Topics 9
    • Posts 12
    • Best 3
    • Groups 0

    kayumanggi

    @kayumanggi

    5
    Reputation
    439
    Profile views
    12
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    kayumanggi Follow

    Best posts made by kayumanggi

    • WordPress + Quasar Theme

      Hi all,

      Here’s a skeleton code for building WP themes using Quasar & WP REST API…

      Notable Features:

      • display wp menu nav
      • dynamic title
      • transform local links to router-links.
        Can be extended to transform shortcodes to components (not implemented)

      Here are the commits… or you could also download the project (available for 30 days only) and put inside your wp-content directory e.g. wp-content/themes/wp-quasar/index.php.

      Warning: I’m no expert… this project is intended for testing and development purposes only. Feedbacks & suggestions are very much welcome… Hope this helps.

      Regards

      posted in Starter Kits
      K
      kayumanggi
    • RE: [SOLVED]Deploy "dist" on Apache (routing problem)

      got it working https://router.vuejs.org/en/essentials/history-mode.html

      posted in Help
      K
      kayumanggi
    • q-scroll-area scrollbar not working inside q-modal

      here’s a video: https://www.youtube.com/watch?v=93vNuiM0QKM

      thanks in advance

      posted in Help
      K
      kayumanggi

    Latest posts made by kayumanggi

    • RE: How to close/clear previous Toast?

      Nope… but this might help http://quasar-framework.org/components/alert.html

      posted in Help
      K
      kayumanggi
    • q-scroll-area scrollbar not working inside q-modal

      here’s a video: https://www.youtube.com/watch?v=93vNuiM0QKM

      thanks in advance

      posted in Help
      K
      kayumanggi
    • QPopover as Dropdown Menus (on hover)

      Is it possible to do this with popovers?
      I tried @mouseover=“openPop()” @mouseout=“closePop()” to the parent button but apparently it is being injected as a direct child of <body> so it doesn’t close. Any alternatives are also appreciated. Thanks

      posted in Help
      K
      kayumanggi
    • WordPress + Quasar Theme

      Hi all,

      Here’s a skeleton code for building WP themes using Quasar & WP REST API…

      Notable Features:

      • display wp menu nav
      • dynamic title
      • transform local links to router-links.
        Can be extended to transform shortcodes to components (not implemented)

      Here are the commits… or you could also download the project (available for 30 days only) and put inside your wp-content directory e.g. wp-content/themes/wp-quasar/index.php.

      Warning: I’m no expert… this project is intended for testing and development purposes only. Feedbacks & suggestions are very much welcome… Hope this helps.

      Regards

      posted in Starter Kits
      K
      kayumanggi
    • RE: Wordpress + Quasar theme development

      Sounds great! Will sure do!!

      posted in Help
      K
      kayumanggi
    • Wordpress + Quasar theme development

      I’m trying to build a vuejs theme for wordpress using quasar framework… unfortunately my webpack knowledge is quite limited. Any help would be greatly appreciated. Thanks!

      posted in Help
      K
      kayumanggi
    • [SUGGESTION] main component, option to attach class on adjacent dependent elements

      e.g. q-select when clicked, generates an adjacent q-popover

      <q-select class=“modded-select-style” …>

      <div class=“q-popover animate-scale modded-select-style” …>

      Benefits: able to associate related components/elements

      <style>
      .q-popover.modded-select-style {
      overflow-y: auto;
      }
      .q-popover.modded-select-style .item {
      display: inline-block;
      width: 50%;
      }
      </style>

      Currently, this is not possible

      Regards

      posted in Framework
      K
      kayumanggi
    • RE: [SOLVED]Deploy "dist" on Apache (routing problem)

      got it working https://router.vuejs.org/en/essentials/history-mode.html

      posted in Help
      K
      kayumanggi
    • [SOLVED]Deploy "dist" on Apache (routing problem)

      Here is what I did to simulate project deployment

      httpd-vhosts.conf
      <VirtualHost *:80>
      DocumentRoot “path/to/quasarproject/dist”
      ServerName quasarproject
      ServerAlias quasarproject
      </VirtualHost>

      hosts
      127.0.0.1 quasarproject

      All is good when I visit http://quasarproject initially, I can navigate through my app without problems. But if I refresh the page or entered a subpath on the browser e.g. http://quasarproject/users, I get Error 404. My guess is that I need .htaccess for this but I’m not sure how.

      Regards

      posted in Help
      K
      kayumanggi
    • How to close/clear previous Toast?

      Scenario: I execute Negative Toast with timeout of 10 sec every time user submission fails(error response). But I want to clear it and any queued Toast so that I can show a Positive Toast immediately on success submission.

      Regards

      posted in Help
      K
      kayumanggi