EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: MRBranco on June 02, 2015, 08:09:38 AM



Title: Mask in textbox field
Post by: MRBranco on June 02, 2015, 08:09:38 AM
Is there any way for to put mask in a textbox field ?

eg.: 1) 999.9999/999
       2) (99) 999-999

Thanks in advance

Maycon


Title: Re: Mask in textbox field
Post by: jarry on June 02, 2015, 09:15:29 AM
This feature does not supported but you can call the 'textbox' method to get the editing box and apply 3rd mask plugin on it.
Code:
var tb = $('#tb').textbox('textbox');
tb.mask(...);