I stuck with input mask format for decimal 3 digits.
For example, if user input 1 then it should be automatically formatted to 0.001 if user input 11 then it should be 0.011 means input digit start from right to left but I need to maintain 3 digits after "." and before the decimal point, the user can input infinite value. means if user input 11111 than it should be 11.111 and if user input 111111 than it should be 111.111.
Thanks In Advance.