I need to add just integer prevent the decimal value (in my case prevent to typing ,). i tried delete the radixpoint property, but it can't read the group separator. Is it possible to make it with this package?
$("#area").inputmask('numeric', {
radixPoint:",",
groupSeparator: ".",
allowMinus: false,
unmaskAsNumber: true,
removeMaskOnSubmit: true,
inputType: "number",
autoUnmask: true,
})
@RayhanYulanda ,
Use the integer alias.
$("#area").inputmask('integer');
Most helpful comment
@RayhanYulanda ,
Use the integer alias.