It would be nice to be able to add to the standard date time formats that the RadDatePicker allows. I don't want to override the standard formats, just add custom formats (ex: ddhhmm MMM yy)
The RadDatePicker will accept custom format patterns in case you would like having them. 
Here is a javascript function that can be used in order to achieve that:
function ValueChanged(sender, args) {
           sender.set_textBoxValue(args.get_newDate().format("ddhhmm MMM yy"));
       }
				