RobinHerbots / Inputmask

Input Mask plugin
https://robinherbots.github.io/Inputmask/
MIT License
6.39k stars 2.17k forks source link

Can't enter any numbers #2646

Closed Sicos1977 closed 2 years ago

Sicos1977 commented 2 years ago

When setting the masked field to this

textBox.Attributes.Add("data-inputmask", $"'alias': 'integer', {(MultiValue ? "'mask': '000000000\n000000000\n000000000\n000000000\n000000000\n000000000\n000000000\n000000000\n000000000\n000000000\n', " : string.Empty)}'min': {int.MinValue}, 'max': {int.MaxValue}");

I get this,

image

But when I try to enter any numbers it won't let me, any tips on what I am doing wrong?

Sicos1977 commented 2 years ago

I decided to just generate more textboxes instead of a text area so problem solved another way.