Creates DateDataType from string.
Example
var parser = new ac.DateDataTypeParser("dd.MM.yyyy");
var dataType = parser.parse("01.01.1958");
Summary
Constructor detail
ac.DateDataTypeParser(pattern)
See pattern rules http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/i18n/client/DateTimeFormat.html
Parameters
* pattern (text)
Example
var parser = new ac.DateDataTypeParser("dd.MM.yyyy");
var dataType = parser.parse("01.01.1958");
Method detail
parse(date)
Parses the text and creates a instance of type ac.DateDataType from it.
Parameters
* date (text) text presentation of date
Example
var parser = new ac.DateDataTypeParser("dd.MM.yyyy");
var dataType = parser.parse("01.01.1958");