Navigation

    Quasar Framework

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. Avada Kedavra
    A
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 5
    • Best 0
    • Groups 0

    Avada Kedavra

    @Avada Kedavra

    0
    Reputation
    1
    Profile views
    5
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Avada Kedavra Follow

    Latest posts made by Avada Kedavra

    • Custom Directive not working properly

      I was faced with the following problem.
      I create a custom Directive that identifies the contents of the input field but the text field is highlighted only when re-setting the focus.

      <q-input
              outlined 
              :value="name"
              autofocus
              v-select-all
              ref="name"
              label="Task Name"
              class="col"
              >
      

      Derective code

      selectAll:{
             inserted(el){
                 let input = el.querySelector('.q-field__native')
                 input.addEventListener('focus', ()=> {
                         if (input.value.length) {
                                  input.select()
                                  console.log('input selected')
                              }
                     })
                 }
             }
      

      Directive though autofocus sets the focus to the desired field to me, but the content is not highlighted. What to do?(

      posted in Framework
      A
      Avada Kedavra
    • RE: How do I deliver updates to users?

      @dobbel, Let’s say I mean ELECTRON APP. How do I deliver updates for this type of app?

      posted in Framework
      A
      Avada Kedavra
    • RE: How do I deliver updates to users?

      @dobbel Aww. So I chose the wrong mode when creating it. I need a universal app for all platforms.

      posted in Framework
      A
      Avada Kedavra
    • RE: How do I deliver updates to users?

      @dobbel, Thank you for your quick response. At the moment this is a SPA

      posted in Framework
      A
      Avada Kedavra
    • How do I deliver updates to users?

      First of all I would like to take this opportunity to thank the developers of quasar and its community!!! This is a no-compromise!!!

      I still have a question. How Can I deliver updates to users? I plan to update the program often enough and I want to make it as simple and user friendly as possible

      posted in Framework
      A
      Avada Kedavra