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

    Posts made by PicosFpm

    • [V1] Input textfield with numeric value and mask

      Hello, there is an error with input textfield component with a numeric value and a given string mask. When calling this.__unmask(this.value) is giving an error.

      __unmask (val) {
            return val !== void 0 && val !== null
              ? val.replace(/[\W _]/g, '')
              : val
          },
      

      In this method, it should be (’’ + val).replace() to cast numeric values into string value, or it will crash as replace is not a function

      posted in Framework
      P
      PicosFpm