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. ZA
    Z
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 9
    • Best 0
    • Groups 0

    ZA

    @ZA

    0
    Reputation
    3
    Profile views
    9
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    ZA Follow

    Latest posts made by ZA

    • RE: Q-Select with mask

      Maybe there is another solution or advice?

      posted in Help
      Z
      ZA
    • Q-Select with mask

      Is it possible to use mask with q-select?
      I need to search by phone number and choose from existing ones
      Аннотация 2019-12-11 135043.jpg

      posted in Help
      Z
      ZA
    • Q-Uploader with Axios and Paperclip

      I can’t understand how to make this bundle work. When all this worked only on rails, I did not wonder, the pictures just loaded.
      Now I have [ Quasar, Rails, Paperclip gem] .
      I understand correctly that I need to send the path to the picture to the server, but not the file itself? Is the Paperclip using the path itself uploading the image to the server? 🤯
      I have such model

      params.require(:part).permit(..... , partimgs_attributes: [:id, :imgurl, :_destroy])
      

      And my request

      <q-uploader
                url=""
                label="Custom header"
                multiple
                :factory="loadImage"
              />
      
      methods: {
                  loadImage(file, updateProgress) {
                      this.$axios.patch('app/books/parts/' + this.id, {part: {partimgs_attributes: file}}).then(resp => {
                          console.log(resp.data)
                      })
                  }
      

      Do I need to request this as?

      {part: {partimgs_attributes: {imgurl: file.url}}}
      
      posted in Help
      Z
      ZA
    • RE: Q-Tree get node Index

      @s-molinari Thx

      posted in Help
      Z
      ZA
    • Q-Tree get node Index

      How can i get node index? I want to make it possible to edit the tree vie editing array.
      Will there be support “dran and drop” function ?

      posted in Help
      Z
      ZA