amarkes / br-masker-ionic-3

mascara para inputs
MIT License
110 stars 32 forks source link

Problemas com números #22

Closed jorgerabello3 closed 6 years ago

jorgerabello3 commented 6 years ago

Boa noite . Eu precisaria de um input com o type de number algo como

<ion-item class="input-item">
    <ion-label stacked>CPF</ion-label>
    **<ion-input type="number" formControlName="cpf" placeholder="CPF" [brmasker]="{mask:'000.000.000-00', len:14}" value=""></ion-input>**
</ion-item>

Mas notei que a máscara só funciona com text... Há alguma forma de fazer funcionar com number ?

Grato


Good evening . I would need an input with type of number something like

<ion-item class="input-item">
    <ion-label stacked>CPF</ion-label>
    **<ion-input type="number" formControlName="cpf" placeholder="CPF" [brmasker]="{mask:'000.000.000-00', len:14}" value=""></ion-input>**
</ion-item>

But I noticed that the mask only works with text ... Is there any way to make it work with number?

thankful

amarkes commented 6 years ago

Neste caso tente usar o

<ion-item>
        <ion-input type="text" formControlName="person" name="cpf" placeholder="CPF" [brmasker]="{person: true}"></ion-input>
      </ion-item>

o person: true ele vai criar uma mascara de cpf/cnpj

se resolver fecha a issue?

jorgerabello3 commented 6 years ago

Opa @amarkes tudo bem ? Resolvido... desculpa pela demora em fechar a issue e obrigado pela ajuda !!!