-1

I need to type big numbers in kendonumeric the problem is 3 digit separator only work after lost focus I need 3 digit mask apply during type like http://robinherbots.github.io/jquery.inputmask/

Amir Paziraee
  • 86
  • 2
  • 8

1 Answers1

1

Use a jQuery mask for your inputs

add attribute at element

data-inputmask="'alias': 'decimal', 'groupSeparator': ',', 'autoGroup': true"

and then activate widget

 $('[data-inputmask]').inputmask();

jsfiddle

layonez
  • 1,746
  • 1
  • 16
  • 20