It's ok, the case is handle by Ori. Here was the problem :
I just test issue 2363 you fixed in latest revision 6.2.1.
Now if use the integerValidator like this : textBox1.Validator = TextBoxValidation.IntegerValidator
When the textbox lost focus, I get the following message: Expression Error: ‘strValue’ is undefined (String(strValue).match(/^[0-9]*$/))
FloatValidator has the same problem.
And if I use the constructor you write in your closing comment of issue 2363 : textBox1.Validator = new TextBoxValidation("String(strValue).match(/^[0-9]*$/)", "Integer value is required.", "0-9", "!objEvent.shiftKey");
Then each time I hit a number (on key press), I get the following message: Expression Error: ‘strValue’ is undefined (String(strValue).match(/^[0-9]*$/))
And also Expression Error : ‘objEvent’ is undefined(objEvent.shiftKey)
The problem is TextBoxValidation not work when using client obscuring