I recently ran my app in Safari (both Mac OSX and WinXP) and found
that anything that uses a DateField bombed (didn't display and raised
a JS error in the Safari Developer tools Web Inspector window).
I pointed Safari on WinXP to the GWT-EXT showcase and the DateFields
all worked fine. However, I did notice that no initial values were
set and the default date format was used. So I created a very simple
test case of just a DateField in a Form. If I don't set an initial
value, there is no error and everything works fine. When I run the
exact same thing but set an initial value, Safari shows a blank screen
and gives the following error:
TypeError: Value undefined (result of expression A.dateFormat) is not
object.
DateFields work as expected in FF3 and IE7.
Test case:
FormPanel form = new FormPanel();
DateField dateField = new DateField("date", "date", 100);
dateField.setValue(new Date());
form.add(dateField);
RootPanel.get().add(form);
My Environment:
Safari 3.1.2
Windows XP
GWT 1.5.2
GWT-EXT 2.0.5
JS-EXT 2.0.2
Java 1.5.0_07
thanks!
peter
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"GWT-Ext Developer Forum" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/gwt-ext?hl=en
-~----------~----~----~----~------~----~------~--~---