On Jun 13, 2014 6:33 PM, <google-web-toolkit@googlegroups.com> wrote:
-- Group: http://groups.google.com/group/google-web-toolkit/topics
- you can only use Chrome extensions that you get from the Chrome Web Store [7 Updates]
- Ignoring requestFactory responses on page reload [2 Updates]
- Dev mode throws MissingResourceException on SerializationStreamFactory.createStreamReader() [1 Update]
- GWT 2.5.1 DevMode - Unexpected module reload with Firefox [1 Update]
- Petition for a standalone Chome installer allowing DevMode [1 Update]
- GWT designer crash [2 Updates]
- Supporting deprecated/unknown browsers [2 Updates]
- WARNING: Could not open/create prefs root node Software\JavaSoft\Prefs at root 0x80000002. Windows RegCreateKeyEx(...) returned error code 5. [1 Update]
- GWT view reloads when I display another view - how do I clear it? [1 Update]
- is there any way to trigger a method when users mouse over the Title of a column in GWT-CellTable? [4 Updates]
- JSNI Javascript promises [3 Updates]
- Debugging in production mode [1 Update]
- Stable .rpc files [1 Update]
AJ <ajelcocks@gmail.com> Jun 12 06:49AM -0700
Win 7 with Chrome 35.0.1916.114
I assume Google pulled the extension from the store as part of there
efforts mentioned here ... ...more
AJ <ajelcocks@gmail.com> Jun 12 06:50AM -0700
Win 7 with Chrome 35.0.1916.114
I assume Google pulled the extension from the store as part of their
efforts mentioned here ... ...more
john wolfe <mekopscell@gmail.com> Jun 12 08:30PM -0700
On Thursday, June 12, 2014 6:59:02 AM UTC-5, AJ wrote:
> the Chrome Web Store
> At the moment I find no way to enable it, not even with developer mode
> enabled
you can get around this by ...more
Distal Twitch <distaltwitch@gmail.com> Jun 12 09:44AM -0700
This just happened to me too... at a very bad time. I have a critical
deadline fast-approaching and my development setup just stopped working
thanks to this update.
I really like GWT and GAE, ...more
Warren Baltz <warrenbaltz@gmail.com> Jun 12 08:41AM -0700
The same thing happened to me.
I am in the middle of a project nearing a deadline and this is NOT ok. I
like a lot of the features offered by GAE/GWT. But if Google thinks it's ...more
Peter Cliff <peter.cliff@eduserv.org.uk> Jun 12 06:20AM -0700
Sounds like this:
http://chrome.blogspot.co.uk/2014/05/protecting-chrome-users-from-malicious.html
Apparently it is possible to install extensions in "Developer Mode" - see:
...more
Jens <jens.nehlmeier@gmail.com> Jun 13 05:33AM -0700
Alternatively you can download any Chrome version for Windows from
portableapps.com. I am not sure if older versions are directly accessible
through their website but you can find them on ...more
Samin Pour <saminjv@gmail.com> Jun 12 12:22AM -0700
Hi Everyone
My question might be very basic but couldn't find the answer anywhere.
I'm working with requestFactory and send some requests to the server at
almost the same time. ...more
Alberto Mancini <ab.mancini@gmail.com> Jun 13 02:30PM +0200
Hi,
may be not a solution in your context but a choice can be also using ...more
"Célio Cidral" <ccidral@gmail.com> Jun 13 05:25AM -0700
> That looks like a bug in DevMode's CompilingClassLoader.
I wonder if someone ever worked around that problem before.
RPC serialization is not symetric (what the client writes can be read ...more
Arnaud Brochard <arnaud.brochard@gmail.com> Jun 13 03:42AM -0700
Hi folks,
I just updated my company's application to GWT 2.5.1 and noticed an
unexpected behavior with Firefox, not present in 2.4.0. On each URL #token
change (either manually in the navigator ...more
Warren Baltz <warrenbaltz@gmail.com> Jun 12 11:24AM -0700
Many people were surprised that their DevMode no longer worked recently. I
am one of them. I am aware of Super Dev Mode. It's not always the answer.
After some digging I found that I can disable ...more
"Jérôme Serré" <jerome.michel.serre@gmail.com> Jun 13 01:56AM -0700
Hello,
i'm a newbee with GWT. please be kind ^^
When i want to use GWT desgner on Test_GWT.java (first app) there is a
crash !
it is possible become a bad installation. I join a report file. ...more
"Jérôme Serré" <jerome.michel.serre@gmail.com> Jun 13 03:28AM -0700
Le vendredi 13 juin 2014 10:56:08 UTC+2, Jérôme Serré a écrit :
> Thank u for your help.
> Jérôme
Hello.
Finally i installed 2.6.1 gwt designer and it works !
...more
Honza Rames <ramejan@gmail.com> Jun 12 11:43PM -0700
Hi everyone,
recently I was asked to support older browsers (namely Opera 12.17). Opera
permutations have been disabled for quite some time (I'm using trunk build
of GWT) and for unknown browsers ...more
Jens <jens.nehlmeier@gmail.com> Jun 13 02:14AM -0700
Take a look at: https://gwt-review.googlesource.com/#/c/7780/
-- J.
...more
Honza Rames <ramejan@gmail.com> Jun 12 11:24PM -0700
One more thing to note. On 64-bit systems you need to create a key
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft\Prefs. I didn't even have
to change any permissions to make the message go away, ...more
Glyndwr Bartlett <glyndwr.bartlett@gmail.com> Jun 12 10:02PM -0700
The answer, if anyone is interested, can be found here:
http://forums.whirlpool.net.au/forum-replies.cfm?t=2265752
Regards,
Glyn
On Wednesday, 21 May 2014 12:42:52 UTC+10, Glyndwr ...more
Tom <HenryHa5@gmail.com> Jun 12 07:51AM -0700
Ok, I have a CellTable CellTable<List<String>> table = new
CellTable<List<String>>();
& a nameColumn IndexedColumn nameColumn=new IndexedColumn(0)
then table.addColumn(nameColumn, "Name");
...more
Tom <HenryHa5@gmail.com> Jun 12 03:44PM -0700
I tried
Header<String> nameColumnHeader = new Header<String>(new ClickableTextCell
()) {
@Override
public String getValue() {
return "Name";
}
...more
Jens <jens.nehlmeier@gmail.com> Jun 12 04:10PM -0700
ClickableTextCell only listens for click and keydown events so
Header.onBrowserEvent() will never be called for mouseover events. You must
create your own Cell class (possibly extending any of ...more
Tom <HenryHa5@gmail.com> Jun 12 09:10PM -0700
Thank you Jens for your hint. I couldn't see any getConsumedEvents() so I
used onBrowserEvent and it working ok.
private class HeaderCell extends AbstractCell<String> {
...more
Jens <jens.nehlmeier@gmail.com> Jun 12 06:38AM -0700
> same syntax than jQuery ones, and work in browser and server sides.
> You can see how them work in these slides:
> http://slides.gquery.org/gwtcreate/gwtcreate.html#18
I want something that ...more
Peter Donald <peter@realityforge.org> Jun 13 08:20AM +1000
Out of curiosity, is this library open source or is it likely to be?
--
Cheers,
Peter Donald
...more
Jens <jens.nehlmeier@gmail.com> Jun 12 03:43PM -0700
> Out of curiosity, is this library open source or is it likely to be?
It will soon be open source.
-- J.
...more
Grace Yeung <graceyeung321@gmail.com> Jun 12 07:49AM -0700
I am still geting this:
Can't find any GWT Modules on this page.
I am trying the latest version 2.6.1, but I still have to do the following
setting:
<add-linker name=*"xsiframe"* />
...more
Michael Joyner <michael@newsrx.com> Jun 12 09:57AM -0400
On 06/12/2014 04:56 AM, P.G.Taboada wrote:
> (js dictionary) and I have a servlet that delivers same information on
> the server side. Client asks server, if server has different build/ ...more
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+unsubscribe@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.
No comments:
Post a Comment