Text/value formats converter object. Could be used to convert the control text (for example, textbox input) to the numeric or date value.
var value = obj.getControlFormat();
obj.setControlFormat(value);
obj.onControlFormatChanging = function(value){...};
obj.onControlFormatChanged = function(value){...};
obj.onControlFormatError = function(value){...};
var date = new AW.Formats.Date;
date.setTextFormat("mmm-d-yy");
var obj = new AW.UI.Input;
obj.setControlFormat(date);
document.write(obj);
obj.onControlValidated = function(){
alert(this.getControlValue());
};