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. Patrick Spiegel
    P
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 7
    • Best 0
    • Groups 0

    Patrick Spiegel

    @Patrick Spiegel

    0
    Reputation
    54
    Profile views
    7
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Patrick Spiegel Follow

    Latest posts made by Patrick Spiegel

    • RE: Tree is not compatible with contenteditable attribute

      The body is not a problem. The problem are the blue headings. At least I have the problem on a current chrome version.

      posted in Framework
      P
      Patrick Spiegel
    • RE: Tree is not compatible with contenteditable attribute

      Hello,

      Thanks for you example, however I wanted to keep my example simple. The heading of the tree items are not editable.
      The general problem is, that items with contenteditable enabled just keep losing focus whenever you click onto them, when they are located inside a tree

      By the way: contenteditable is just a shorthand for contenteditable="true" in vue.

      posted in Framework
      P
      Patrick Spiegel
    • Tree is not compatible with contenteditable attribute

      https://codepen.io/anon/pen/GavaXj?&editable=true&editors=101

      Hello,

      it seems like the tree is not fully compatible with the contenteditable attribute. Use-Case is renaming items in the tree.

      posted in Framework
      P
      Patrick Spiegel
    • RE: Using Material Icons in v1 Beta 23

      @Hawkeye64 yes, that works when you are using the Quasar CLI. But for TypeScript the Vue CLI works just better out of the box.

      posted in Framework
      P
      Patrick Spiegel
    • RE: Using Material Icons in v1 Beta 23

      Well this entry has been added by the vue quasar plugin.

      "dependencies": {
          "@quasar/extras": "^1.0.0",
      

      I used to import material icons and roboto font this way:

      import "@quasar/extras/roboto-font/roboto-font.css";
      import "@quasar/extras/material-icons/material-icons.css";
      

      Maybe that helps with the confusion.

      posted in Framework
      P
      Patrick Spiegel
    • Using Material Icons in v1 Beta 23

      Hello, it seems like you kiled the @quasar/extras package and moved its content into the main repository.

      However, when I follow the instructions on how to use the new icon-sets I get the icon names instead of the icons in my application.
      https://v1.quasar-framework.org/options/quasar-icon-sets#Introduction

      This is how I have initialized the icons.

      Vue.use(Quasar, {
        iconSet: require("quasar/icon-set/material-icons").default
      });
      

      Pretty simple, but I don’t know what else to do. No error messages.

      I am using TypeScript + Vue-CLI v3

      posted in Framework
      P
      Patrick Spiegel