Giter Site home page Giter Site logo

Comments (8)

marcosrocha85 avatar marcosrocha85 commented on August 9, 2024 21

I spent a lot of time until reach here. Despite this project is widely be used, it should be merged and have a proper attention.

Anyway, @Vlaoff or @ankology . Can you show me a more detailed example how did you done? I'm using ES5 and didn't manage to make custom mask work. I need letters to be uppercased when typed.

var app = new Vue({
    el: "#my_application",
    data: {
        customTokens: {
            mask: 'CCCCC',
            tokens: {
                'C': {
                    pattern: /[0-9a-zA-Z]/,
                    transform: function(v) {
                        return v.toLocaleUpperCase();
                    }
                }
            }
        },
    }
});

<input v-mask="customTokens" v-model="license_plate"/>

from vue-the-mask.

kennerus avatar kennerus commented on August 9, 2024 6

I had same problem as you. Needed to add custom regexp. So here is my solution for custom tokens:
https://codesandbox.io/s/7mw8x06pv1?fontsize=14

I first added just one token and it was like:

data() {
    return {
      customTokens: {
        'Y': {pattern: /[0-9]/}
      },
    }
  }

But it owerrites the-mask tokens, so i needed to add to ":tokens" all tokens that i want to use (just copied from source code all tokens).

from vue-the-mask.

vlad909 avatar vlad909 commented on August 9, 2024 1

@marcosrocha85 but this example doesn't work :D

from vue-the-mask.

marcosrocha85 avatar marcosrocha85 commented on August 9, 2024 1

@vlad909 It was my attempt and stuck at that kind of "code". Anyway, thank you guys for your attention.

from vue-the-mask.

ankology avatar ankology commented on August 9, 2024

If you need to use a existing token, is required to pass again with your custom tokens.

from vue-the-mask.

ankology avatar ankology commented on August 9, 2024

I didn't run the code, @marcosrocha85 but your input is type="tel" maybe is it the issue? The rest looks ok.

from vue-the-mask.

marcosrocha85 avatar marcosrocha85 commented on August 9, 2024

Thank you for your reply. Actually the type="tel" was a typo. But I solved by doing 'AAA-#X##' at v-mask property and converting to UpperCase at server so I can type ABC-1234 and ABC-1T34 which are two possible license plates of Southern Common Market.

from vue-the-mask.

huynhquangminh avatar huynhquangminh commented on August 9, 2024

I spent a lot of time until reach here. Despite this project is widely be used, it should be merged and have a proper attention.

Anyway, @Vlaoff or @ankology . Can you show me a more detailed example how did you done? I'm using ES5 and didn't manage to make custom mask work. I need letters to be uppercased when typed.

var app = new Vue({
    el: "#my_application",
    data: {
        customTokens: {
            mask: 'CCCCC',
            tokens: {
                'C': {
                    pattern: /[0-9a-zA-Z]/,
                    transform: function(v) {
                        return v.toLocaleUpperCase();
                    }
                }
            }
        },
    }
});

<input v-mask="customTokens" v-model="license_plate"/>

It is run with this code

from vue-the-mask.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.