ionic2-mask-directive icon indicating copy to clipboard operation
ionic2-mask-directive copied to clipboard

do you know how to change the mask through code?

Open raphaelluiz128 opened this issue 6 years ago • 1 comments

i have the html code: <ion-input type="text" style = 'width:80%' [(ngModel)]="user.cpf_cnpj" mask="999.999.999-99">

and ts code

Change_Toggle(bval:any) { if (bval===false) { this.Type = "Pessoa Jurídica"; this.CPF_CNPJ = "CNPJ"; this.user.type_user = "Pessoa Jurídica"; this.user.cpf_cnpj['mask']="00.000.000/0000-00"; } else { this.Type = "Pessoa Física"; this.CPF_CNPJ = "CPF"; this.user.type_user = "Pessoa Física"; this.user.cpf_cnpj['mask']="999.999.999-99"; }

how do I change the input mask?

raphaelluiz128 avatar Jul 10 '18 13:07 raphaelluiz128

Try with [mask]="yourVariable"

danilopolani avatar Sep 20 '18 14:09 danilopolani