using this at the moment:
Code
DateFormat formatter;
Date date;
formatter = new SimpleDateFormat("dd-MM-yyyy");
date = result.getBirthday(); // my date
txtbirthday.setText(formatter.format(date));
error: No source code is available for type java.text.DateFormat; did you forget to inherit a required module?
i guess its not supported by GWT
somebody has an idea?
This post was edited by tinaschatz on May 24 2012 02:54pm