Hi to everyone who facing same problem how to initial value of the input.
For my example above i want the first input to show an initial value ’06########’ so what i did just like this:
$("#myNumber").jqxMaskedInput({ width: 250, height: 25, mask: '[0][6]########' ,value:'06'});
Same thing for the second:
$("#matricule").jqxMaskedInput({ width: 250, height: 25, mask: '#####-[a]-36',value:'A-36'});
The solution is you must set the value in the options.
Regards.