Re: How to migrate to GWT2.7.0 from GWT2.6.0 using Eclipse?

2015-03-12 Thread Jens
GWT packages Apache Xerces 2.11 into gwt-dev.jar but in your class path is 
a different version (maybe an older one) before the gwt-dev.jar class path 
entry. This causes GWT to use a Xerces version that has a different API for 
org.apache.xerces.dom.ElementNSImpl.setUserData() which causes your 
exception.

So you can either make sure that gwt-dev.jar is the first entry in your 
class path or you must update the Xerces library in your project.

-- J.


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: MVP Pattern Without History Mechanism?

2015-03-12 Thread Greg
When passing the state of the screen in the url you shouldn't embed whole 
data in it. Instead you should pass some references to it like ids etc. The 
screen you want to display should use that references to fetch the actual 
data (from LocalStorage / IndexedDB / Server)

On Wednesday, March 11, 2015 at 3:12:29 PM UTC+1, Abdullah wrote:

 Because of History Mechanism,When Switching from one Screen to other 
 screen i need to pass some data to that Screen that i am unable to achieve 
 using History Mechanism.Will it possible to pass the data?Is there any 
 example code?

 On Wednesday, March 11, 2015 at 12:56:01 PM UTC+5:30, Abdullah wrote:

 Hi,
   Is any Impact Implementing MVP Pattern Without History Mechanism?



-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: MVP Pattern Without History Mechanism?

2015-03-12 Thread Eric Ponthiaux
I'm agree on the fact that this could be shame to do not have history 
support in your app .

Just have a little look at 

*http://www.gwtproject.org/javadoc/latest/com/google/web/bindery/autobean/shared/AutoBean.html*

or 

*https://developer.mozilla.org/fr/docs/Web/JavaScript/Reference/Objets_globaux/JSON/stringify*

Use *Autobean *, or a more direct implementation using a javascript 
object and  *JSON.stringify* , to serialize your data to json .

Pass the result as a parameter in the url ( 
http://mysite.com?myDatasAsJson={} .)

Optionaly hash the value of the param to avoid your users to plainly read 
the passed value ( http://mysite.com?myDatasAsJson=

*http://en.wikipedia.org/wiki/Hash_function*




Le mercredi 11 mars 2015 08:26:01 UTC+1, Abdullah a écrit :

 Hi,
   Is any Impact Implementing MVP Pattern Without History Mechanism?


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


A good React library for GWT

2015-03-12 Thread Freemen Muaddib
Hi! I'm a web developer, and I'm searching a good React (or React-like) 
library for GWT.
Does anybody know one? Thx!

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


dispatchEvent() throws exception

2015-03-12 Thread Константин Милютин
 

I'm using Element.dispatchEvent() method to dispatch native event in GWT 
like this:

final NativeEvent nativeEvent = 
event.getNativeEvent();Scheduler.get().scheduleDeferred(new 
Scheduler.ScheduledCommand() {
@Override
public void execute() {
element.dispatchEvent(nativeEvent);
}});

Method dispatchEvent() is provided by GWT and looks like:

public final void dispatchEvent(NativeEvent evt) {
  DOMImpl.impl.dispatchEvent(this, evt);}

This code throws exception with the following stack trace:

com.google.gwt.core.shared.SerializableThrowable: (undefined) : DOM Exception: 
NOT_SUPPORTED_ERR (9)
at 
com.google.gwt.core.client.impl.StackTraceCreator$CollectorEmulated.$fillInStackTrace(StackTraceCreator.java:180)
 ~[gwt-servlet-2.6.0.jar:na]
at java.lang.Throwable.fillInStackTrace(Throwable.java:518) 
~[na:1.8.0_31]
at java.lang.Throwable.Throwable(Throwable.java:51) ~[na:1.8.0_31]
at java.lang.Exception.Exception(Exception.java:25) ~[na:1.8.0_31]
at 
java.lang.RuntimeException.RuntimeException(RuntimeException.java:25) 
~[na:1.8.0_31]
at 
com.google.gwt.core.client.JavaScriptException.JavaScriptException(JavaScriptException.java:117)
 ~[gwt-servlet-2.6.0.jar:na]
at 
com.google.gwt.lang.Exceptions.getCachableJavaScriptException(Exceptions.java:45)
 ~[na:na]
at com.google.gwt.lang.Exceptions.wrap(Exceptions.java:29) ~[na:na]
at 
com.google.gwt.dom.client.DOMImplStandard.$dispatchEvent(DOMImplStandard.java:69)
 ~[gwt-servlet-2.6.0.jar:na]


It seems that dispatchEvent() is not supported by the some elements, but 
I'm not sure which exactly.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: MVP Pattern Without History Mechanism?

2015-03-12 Thread Ümit Seren
This is an anti-pattern.
You should make sure that all screens that can be navigated to by the user 
are stateless in the sense that all the state can be derived from the URL. 
The big advantage is that the screen can be bookmarked users can navigate 
to it directly.
If you are concerned about redundant backend calls encapsulate the backend 
calls in a seperate (singleton class) that handles caching. This will also 
reducate the logic in your Presenters because you don't have to check the 
URL parameters against the already fetched data. 

On Wednesday, March 11, 2015 at 8:26:01 AM UTC+1, Abdullah wrote:

 Hi,
   Is any Impact Implementing MVP Pattern Without History Mechanism?


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: MVP Pattern Without History Mechanism?

2015-03-12 Thread Eric Ponthiaux
Sure .

2015-03-12 14:50 GMT+01:00 Ümit Seren uemit.se...@gmail.com:

 This is an anti-pattern.
 You should make sure that all screens that can be navigated to by the user
 are stateless in the sense that all the state can be derived from the URL.
 The big advantage is that the screen can be bookmarked users can navigate
 to it directly.
 If you are concerned about redundant backend calls encapsulate the backend
 calls in a seperate (singleton class) that handles caching. This will also
 reducate the logic in your Presenters because you don't have to check the
 URL parameters against the already fetched data.

 On Wednesday, March 11, 2015 at 8:26:01 AM UTC+1, Abdullah wrote:

 Hi,
   Is any Impact Implementing MVP Pattern Without History Mechanism?

  --
 You received this message because you are subscribed to a topic in the
 Google Groups Google Web Toolkit group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/google-web-toolkit/hbZxrHS7bxo/unsubscribe
 .
 To unsubscribe from this group and all its topics, send an email to
 google-web-toolkit+unsubscr...@googlegroups.com.
 To post to this group, send email to google-web-toolkit@googlegroups.com.
 Visit this group at http://groups.google.com/group/google-web-toolkit.
 For more options, visit https://groups.google.com/d/optout.


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT Material Design

2015-03-12 Thread mark kevin ringor
Hi to all,

Just have a time to migrate the source code to GitHub today as many of you 
wants it to be in GitHub.

Here's the link: 
*https://github.com/kevzlou7979/GwtMaterial 
https://github.com/kevzlou7979/GwtMaterial*

*Version 15.3.13 Features:*
*1. Collabsible and Accordion*
*2. Dropdown Menu*
*3. Footer*
*4. Tabs*
*5. Collections (Dismissable and Avatar)*

*Next Steps:*
I'am planning to use this *Material Design UI / UX *on* gwt-phonegap *(
https://github.com/dankurka/gwtphonegap) 
to implement to cross platform mobile devices (Android , IOS, Windows 
etc.). If you are interested on joining the project don't hesitate to 
contact me.

*Skype: markkevin7979*

Best Regards,
Kevin

On Thursday, February 19, 2015 at 2:37:25 PM UTC+8, mark kevin ringor wrote:

 Hi,

 We updated the site and implemented some new Material Widgets:
 1. Nav Bar
 2. Collapsible
 3. DropDown
 4. Switches
 5. Range
 6. Fixed Floating Button with container
 7. Cards

 Hope you like it guys.

 Best Regards,
 Kevin

 On Friday, February 6, 2015 at 1:51:20 PM UTC+8, mark kevin ringor wrote:

 Hi to all,

 We are a team of GWT Developers to implement the GWT Material Design with 
 the help MaterializeCSS (http://materializecss.com/). We
 are doing our best to integrate the Features to be able to integrate 
 inside GWT Applications. 

 Anyone interested are well appreciated to join us.
 We have deployed a demo material here: http://gwt-material.appspot.com/.

 Hope you like it.

 Regards,
 Kevin



-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Gwt Editors: How to change a value programmatically

2015-03-12 Thread Paul Robinson
On 10 Mar 2015 18:56, Manuel develop.m...@gmail.com wrote:


 // Copy day/month/year to the datebox
 startDate.setYear(selectedDate.getYear());
 startDate.setMonth(selectedDate.getMonth());
 startDate.setDate(selectedDate.getDate());


Perhaps you should remember the year/month/date you want another way.

Also, copying the year, month and date like that from one date instance to
another is fundamentally broken. It will usually do what you expect but not
always.

For example, if you have 2015-02-20 and copy that to a date that starts off
as 2015-03-31, then copying the year will change nothing because they are
already the same. Copying the month will give the value 2015-02-31 which
doesn't exist. So it will interpret that to mean 2015-03-03, since 31st Feb
is 3 days beyond the end of February (in 2015).

You finally copy the day, and so end up with 2015-03-20 when you thought
you would get 2015-02-20.

Paul

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT and Material Design

2015-03-12 Thread mark kevin ringor
Hi to all,

Just have a time to migrate the source code to GitHub today as many of you 
wants it to be in GitHub.

Here's the link: 
*https://github.com/kevzlou7979/GwtMaterial*

*Version 15.3.13 Features:*
*1. Collabsible and Accordion*
*2. Dropdown Menu*
*3. Footer*
*4. Tabs*
*5. Collections (Dismissable and Avatar)*

*Next Steps:*
I'am planning to use this *Material Design UI / UX *on* gwt-phonegap *
(https://github.com/dankurka/gwtphonegap) 
to implement to cross platform mobile devices (Android , IOS, Windows 
etc.). If you are interested on joining the project don't hesitate to 
contact me.

*Skype: markkevin7979*

Best Regards,
Kevin


On Thursday, March 12, 2015 at 6:59:35 PM UTC+8, Meryem Alay wrote:

 Hi,

 It looks great! thank you for sharing

 11 Şubat 2015 Çarşamba 08:04:53 UTC+2 tarihinde mark kevin ringor yazdı:

 Hi,

 I forgot to give you the Repository :)

 The source code is available here you can check it out:
 https://code.google.com/p/gwt-material/source/checkout

 Best Regards:
 Kevin

 On Wed, Feb 11, 2015 at 1:19 PM, mark kevin ringor kevzl...@gmail.com 
 wrote:

 Hi Grace,

 I have updated the Getting Started Documentation on how to implement 
 material design in GWT (http://www.gwt-material.appspot.com). I need 
 more help on how to make it more easy (like using gQuery).


 Best Regards,
 Kevin

 On Wed, Feb 11, 2015 at 4:33 AM, Grace C glch...@gmail.com wrote:

 Nice! Do you have the current code / a starting project available as 
 open source? I would love to use this.


 On Saturday, February 7, 2015 at 12:59:07 AM UTC-5, mark kevin ringor 
 wrote:

 Checkout our under development project on http://gwt-material.
 appspot.com/ we are integrating the MaterializeCSS(http://
 materializecss.com/) to GWT.
 Hope you like it :)

 On Tuesday, January 6, 2015 at 10:30:37 AM UTC+8, philip andrew wrote:

 Hi there,

 Has anyone tried to make a Material Design for GWT?
 http://www.google.com/design/spec/material-design/introduction.html

 Philip

  -- 
 You received this message because you are subscribed to a topic in the 
 Google Groups Google Web Toolkit group.
 To unsubscribe from this topic, visit 
 https://groups.google.com/d/topic/google-web-toolkit/bn57tSMkH7E/unsubscribe
 .
 To unsubscribe from this group and all its topics, send an email to 
 google-web-toolkit+unsubscr...@googlegroups.com.
 To post to this group, send email to google-we...@googlegroups.com.
 Visit this group at http://groups.google.com/group/google-web-toolkit.
 For more options, visit https://groups.google.com/d/optout.





-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


ScrollTable?

2015-03-12 Thread Betsey Benagh
I have an application I built in GWT.  I have a FlexTable that I'd really 
like to make scrollable, with the header row frozen.  It seems that the 
ScrollTable from the now-deprecated incubator is exactly what I need, but 
apparently it wasn't added to GWT.  Is there somewhere else I can get 
equivalent functionality? 


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: A good React library for GWT

2015-03-12 Thread Ignacio Baca Moreno-Torres
Sorry, I didn't know that React is a JS library. This has much more sense. 
:)

On Thursday, March 12, 2015 at 6:21:29 PM UTC+1, Ignacio Baca Moreno-Torres 
wrote:

 I'm not sure if react library means anything :), is any library using an 
 Observable pattern a react library? Is the jdk an object oriented library?

 If you are looking for a data-binding library:
 Editor framework using uiHandler is reactive (but not two-ways data 
 binding)
 Errai data binding 
 http://docs.jboss.org/errai/3.1.2.Final/errai/reference/html_single/#sid-51282340
 Tessel http://gwtcreate.com/videos/#tessel
 Pectin https://code.google.com/p/gwt-pectin/
 TurboGWT https://github.com/growbit/turbogwt-databind

 But, if you are looking for http://reactivex.io/, I think there isn't 
 anything simillar. I made some test to run RxJava in GWT (
 https://github.com/ibaca/rxjava-gwt/) you may try.

 Finally, promises are kind of 'reactive commands', if your are looking for 
 that you may tray GwtQuery or TurboGwt.

 Or you can just use GWT programming reactive code ;).






 On Thursday, March 12, 2015 at 2:40:53 PM UTC+1, Freemen Muaddib wrote:

 Hi! I'm a web developer, and I'm searching a good React (or React-like) 
 library for GWT.
 Does anybody know one? Thx!



-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: A good React library for GWT

2015-03-12 Thread Ignacio Baca Moreno-Torres
I'm not sure if react library means anything :), is any library using an 
Observable pattern a react library? Is the jdk an object oriented library?

If you are looking for a data-binding library:
Editor framework using uiHandler is reactive (but not two-ways data binding)
Errai data 
binding 
http://docs.jboss.org/errai/3.1.2.Final/errai/reference/html_single/#sid-51282340
Tessel http://gwtcreate.com/videos/#tessel
Pectin https://code.google.com/p/gwt-pectin/
TurboGWT https://github.com/growbit/turbogwt-databind

But, if you are looking for http://reactivex.io/, I think there isn't 
anything simillar. I made some test to run RxJava in GWT 
(https://github.com/ibaca/rxjava-gwt/) you may try.

Finally, promises are kind of 'reactive commands', if your are looking for 
that you may tray GwtQuery or TurboGwt.

Or you can just use GWT programming reactive code ;).






On Thursday, March 12, 2015 at 2:40:53 PM UTC+1, Freemen Muaddib wrote:

 Hi! I'm a web developer, and I'm searching a good React (or React-like) 
 library for GWT.
 Does anybody know one? Thx!



-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: ScrollTable?

2015-03-12 Thread Betsey Benagh
I'm not sure that's quite going to do what I need - I'm taking advantage of 
the FlexTable's ability to have a cell span multiple rows.  My table has 
four columns.  The first three are filled on create, but the data in the 
fourth column is dynamic and changes based on buttons (and spans multiple 
rows).  It doesn't look like the DataGrid can handle that.

On Thursday, March 12, 2015 at 2:14:11 PM UTC-4, Juan Pablo Gardella wrote:

 Yes, 
 http://www.gwtproject.org/javadoc/latest/com/google/gwt/user/cellview/client/DataGrid.html

 On 12 March 2015 at 13:06, Betsey Benagh betsey...@bostonfusion.com 
 javascript: wrote:

 I have an application I built in GWT.  I have a FlexTable that I'd really 
 like to make scrollable, with the header row frozen.  It seems that the 
 ScrollTable from the now-deprecated incubator is exactly what I need, but 
 apparently it wasn't added to GWT.  Is there somewhere else I can get 
 equivalent functionality? 


  -- 
 You received this message because you are subscribed to the Google Groups 
 Google Web Toolkit group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to google-web-toolkit+unsubscr...@googlegroups.com javascript:.
 To post to this group, send email to google-we...@googlegroups.com 
 javascript:.
 Visit this group at http://groups.google.com/group/google-web-toolkit.
 For more options, visit https://groups.google.com/d/optout.




-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: ScrollTable?

2015-03-12 Thread Jens


 I'm not sure that's quite going to do what I need - I'm taking advantage 
 of the FlexTable's ability to have a cell span multiple rows.  My table has 
 four columns.  The first three are filled on create, but the data in the 
 fourth column is dynamic and changes based on buttons (and spans multiple 
 rows).  It doesn't look like the DataGrid can handle that.


Yeah sounds like DataGrid can't do that well. You can use custom table 
builders with DataGrid to customize the way the table is rendered but I am 
not sure if it fits your use case. A customized example 
is 
http://samples.gwtproject.org/samples/Showcase/Showcase.html#!CwCustomDataGrid 
which can expand rows but showing friends and adds notification rows.

In your case you can probably just write your own table component that 
extends Composite and uses a FlowPanel to combine a header + ScrollPanel. 
Inside that ScrollPanel you put your FlexTable.

-- J.




-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Adding JavaScript file to test native method in GWTTestCase

2015-03-12 Thread Brandon
I have a native method which calls a JavaScript function from a JS file in 
my war directory (war/appJS.js). Here is the code for the method:

public static native String hello()
/*-{
return appJS._escape(hello world)
}-*/;

I have tried using ScriptInjector.FromUrl with the url being 
GWT.getModuleBaseURL() + appJS.js and it doesn't work. I have even moved 
the appJS.js into the module package and it still doesn't work.

Is it possible to use a JavaScript file from the war directory in a 
GWTTestCase? Any help is very much appreciated. Thanks!

-Brandon

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: ScrollTable?

2015-03-12 Thread Juan Pablo Gardella
Yes,
http://www.gwtproject.org/javadoc/latest/com/google/gwt/user/cellview/client/DataGrid.html

On 12 March 2015 at 13:06, Betsey Benagh betsey.ben...@bostonfusion.com
wrote:

 I have an application I built in GWT.  I have a FlexTable that I'd really
 like to make scrollable, with the header row frozen.  It seems that the
 ScrollTable from the now-deprecated incubator is exactly what I need, but
 apparently it wasn't added to GWT.  Is there somewhere else I can get
 equivalent functionality?


  --
 You received this message because you are subscribed to the Google Groups
 Google Web Toolkit group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to google-web-toolkit+unsubscr...@googlegroups.com.
 To post to this group, send email to google-web-toolkit@googlegroups.com.
 Visit this group at http://groups.google.com/group/google-web-toolkit.
 For more options, visit https://groups.google.com/d/optout.


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Titanium4j 4.0.0 is here

2015-03-12 Thread Alain
We just released version 4 of titanium4j.
Writing native mobile apps for java  just become easier.
Enjoy 

http://titanium4j.ahome-it.com

Cheers,

Alain 

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Adding JavaScript file to test native method in GWTTestCase

2015-03-12 Thread Thomas Broyer
The script has to be in your public path to be able to inject it in GWT test 
cases.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Gwt Editors: How to change a value programmatically

2015-03-12 Thread Manuel
No ideas ? :(

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT and Material Design

2015-03-12 Thread Meryem Alay
Hi,

It looks great! thank you for sharing

11 Şubat 2015 Çarşamba 08:04:53 UTC+2 tarihinde mark kevin ringor yazdı:

 Hi,

 I forgot to give you the Repository :)

 The source code is available here you can check it out:
 https://code.google.com/p/gwt-material/source/checkout

 Best Regards:
 Kevin

 On Wed, Feb 11, 2015 at 1:19 PM, mark kevin ringor kevzl...@gmail.com 
 javascript: wrote:

 Hi Grace,

 I have updated the Getting Started Documentation on how to implement 
 material design in GWT (http://www.gwt-material.appspot.com). I need 
 more help on how to make it more easy (like using gQuery).


 Best Regards,
 Kevin

 On Wed, Feb 11, 2015 at 4:33 AM, Grace C glch...@gmail.com javascript:
  wrote:

 Nice! Do you have the current code / a starting project available as 
 open source? I would love to use this.


 On Saturday, February 7, 2015 at 12:59:07 AM UTC-5, mark kevin ringor 
 wrote:

 Checkout our under development project on http://gwt-material.
 appspot.com/ we are integrating the MaterializeCSS(http://
 materializecss.com/) to GWT.
 Hope you like it :)

 On Tuesday, January 6, 2015 at 10:30:37 AM UTC+8, philip andrew wrote:

 Hi there,

 Has anyone tried to make a Material Design for GWT?
 http://www.google.com/design/spec/material-design/introduction.html

 Philip

  -- 
 You received this message because you are subscribed to a topic in the 
 Google Groups Google Web Toolkit group.
 To unsubscribe from this topic, visit 
 https://groups.google.com/d/topic/google-web-toolkit/bn57tSMkH7E/unsubscribe
 .
 To unsubscribe from this group and all its topics, send an email to 
 google-web-toolkit+unsubscr...@googlegroups.com javascript:.
 To post to this group, send email to google-we...@googlegroups.com 
 javascript:.
 Visit this group at http://groups.google.com/group/google-web-toolkit.
 For more options, visit https://groups.google.com/d/optout.





-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Getting slowness in GWT page in Internet explorer without clearing cache

2015-03-12 Thread Nagarajan P


Getting slowness in GWT page in Internet explorer without clearing cache. 
Please find the below scenarios.

 

1)  For the first time (Without any cache in browser), when I open my 
gwt application in Internet explorer (Using IE 8). It was quicker and the 
page loads and opens quickly.

2)  Now I closed my browser without clearing cache. When I open my gwt 
application in Internet explorer (Using IE 8) now, the page loads very 
slowly and it’s nearly taking more than one minute to load the page. (When 
checked in fiddler application, the time taken to load nocache.js and 
cache.html is taking very long time)

3)  Now when I open my application in same tab of IE 8 (without closing 
browser), the application is very quick.

4)  But when I open my application in different tab of IE 8 (without 
closing browser), the application is very slow same as 2nd scenario.

 

After analysis I come to know that whenever I am not clearing cache, its 
looking for modified js and html and so the time taken is high. But after 
clearing cache, both nocache.js and cache.html gets downloaded from server 
and its quick.

Note: Its occurring only in IE and not in chrome and firefox.

Can someone provide some solution to fix this issue.


Thanks,

Nagarajan .P

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.