In CNumberValidator the line that checks if entered text is a number is:
if(!preg_match('/^\s*[-+]?[0-9]*\.?[0-9]+([eE][-+]?[0-9]+)?\s*$/',"$value"))
so it checks only for . (dot), but we should consider all situations... maybe to use decimalFormat?

Help












