Set "inputmode" on a currency field to "decimal"?

Sussed it.

In case anyone else wants it the code I used was:

var im = new Inputmask(“numeric”, {
numericInput: true,
placeholder: ‘0’,
groupSeparator: ‘,’,
autoGroup: true,
rightAlign: false
});
im.mask($(‘#fieldDVWQWRRNZ4’));

}
}
checkFlag();

1 Like