Re: Share code between GWT projects

2014-06-12 Thread Julien
I'm only exporting with Eclipse, I've seen lots of topics saying that Maven would help me but I want to try doing it with Eclipse and GWT Plugin only as I don't really have time to learn how to use Maven for now Le mercredi 11 juin 2014 19:33:11 UTC+2, Thomas Broyer a écrit : On Wednesday,

Re: Stable .rpc files

2014-06-12 Thread P.G.Taboada
My build process stores build/ version information into the host-file (js dictionary) and I have a servlet that delivers same information on the server side. Client asks server, if server has different build/ version number, client side reloads. Am Dienstag, 10. Juni 2014 21:57:31 UTC+2

Re: Stable .rpc files

2014-06-12 Thread P.G.Taboada
Basically same procedure here. I still have a reload when I don't need one, and changing roc files are a no-go when thinking of phone gap app deployments. Am Mittwoch, 11. Juni 2014 00:11:58 UTC+2 schrieb Jens: What is the procedure you use for detecting app and rpc policy file change?

Re: GWT 2.6 RC1 DevMode log4j fail?

2014-06-12 Thread Luca Morettoni
On Sat, May 31, 2014 at 1:34 AM, Thomas Broyer t.bro...@gmail.com wrote: The link you just quoted above: https://github.com/tbroyer/gwt-maven-archetypes ;-) I'm too old to this job!!! Thanks! Fantastic example! -- Luca Morettoni luca(AT)morettoni.net | http://www.morettoni.net

Re: Edit an object in a List without a ListEditor

2014-06-12 Thread Zied Hamdi OneView
Hi all, Thanks for the valuable information here, I'm facing a little different but related issue: I have a form that changes some fields depending on what is selected in it The story is a person who edits her profile, and says: I'm a company or I'm a person (eventually I'm a member of a

Re: CellTable Proxy !

2014-06-12 Thread Marouan MARZOUGA
Hi Rogelio, below the code i used to create my CellTable populated by dataset of ValueProxy, received via request factory (onClickGetList method). I can show data in the CellTable also the pager everything work fine. The problem occur when i want to update a row via SelectionCell, it take a

you can only use Chrome extensions that you get from the Chrome Web Store

2014-06-12 Thread AJ
I started up Chrome today and received notification that the GWT Plugin has been disabled For your protection, you can only use Chrome extensions that you get from the Chrome Web Store At the moment I find no way to enable it, not even with developer mode enabled -- You received this

Re: CellTable Proxy !

2014-06-12 Thread Marouan MARZOUGA
It was a mistake when i past the code. The first line is like this, private final CellTableConceptProxy cellTable = new CellTable(); Le mardi 10 juin 2014 20:57:58 UTC+1, Marouan MARZOUGA a écrit : Hi everyone, I have a view that contain a cellTable populated by Proxys (type ValueProxy)

JSNI Javascript promises

2014-06-12 Thread Alex Ph
Hi all, I start to write a wrapper around a Javascript lib, where function calls are handled with promises, like *get(bla).then(doThis,doThat).catch(stuff)*. If I try to wrap this function the gwt compiler says that I missed a name after . operator ... .catch(function... After googling around I

Re: JSNI Javascript promises

2014-06-12 Thread Jens
I have written a Promise library that uses native promises of the browser if possible and emulated promises otherwise. I had the same problem for native promises. I think it is forbidden to define a function with a name catch as it is a keyword however browsers have cheated on that in case of

Re: you can only use Chrome extensions that you get from the Chrome Web Store

2014-06-12 Thread Jens
Or you on Linux? The GWT plugin isn't supported anymore on Chrome for Linux because Chrome dropped NPAPI support on Linux. On Mac/Windows the plugin should still work. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe

Re: JSNI Javascript promises

2014-06-12 Thread Manuel Carrasco Moñino
Out of curiosity, have you guys tried gwt-query promises? they have the 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 On Thu, Jun 12, 2014 at 2:46 PM, Jens

Re: JSNI Javascript promises

2014-06-12 Thread Jens
Out of curiosity, have you guys tried gwt-query promises? they have the 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 can directly map to ES6

Re: you can only use Chrome extensions that you get from the Chrome Web Store

2014-06-12 Thread AJ
Win 7 with Chrome 35.0.1916.114 I assume Google pulled the extension from the store as part of there efforts mentioned here ... http://thenextweb.com/google/2014/05/27/google-removes-npapi-apps-extensions-chrome-web-store-homepage-search-results-category-pages/ I was not aware this was coming

Re: you can only use Chrome extensions that you get from the Chrome Web Store

2014-06-12 Thread AJ
Win 7 with Chrome 35.0.1916.114 I assume Google pulled the extension from the store as part of their efforts mentioned here ... http://thenextweb.com/google/2014/05/27/google-removes-npapi-apps-extensions-chrome-web-store-homepage-search-results-category-pages/ I was not aware this was coming

Re: Stable .rpc files

2014-06-12 Thread Michael Joyner
On 06/12/2014 04:56 AM, P.G.Taboada wrote: My build process stores build/ version information into the host-file (js dictionary) and I have a servlet that delivers same information on the server side. Client asks server, if server has different build/ version number, client side reloads.

Re: Debugging in production mode

2014-06-12 Thread Grace Yeung
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* / set-configuration-property name=*devModeRedirectEnabled* value=*true*/Please give me some ideas. Thanks. On

is there any way to trigger a method when users mouse over the Title of a column in GWT-CellTable?

2014-06-12 Thread Tom
Ok, I have a CellTable CellTableListString table = new CellTableListString(); a nameColumn IndexedColumn nameColumn=new IndexedColumn(0) then table.addColumn(nameColumn, Name); I want that when user mouseOver the title of nameColumn it will trigger methodX The table.addCellPreviewHandler

Re: JSNI Javascript promises

2014-06-12 Thread Peter Donald
Out of curiosity, is this library open source or is it likely to be? On Thursday, June 12, 2014, Jens jens.nehlme...@gmail.com wrote: I have written a Promise library that uses native promises of the browser if possible and emulated promises otherwise. I had the same problem for native

Re: JSNI Javascript promises

2014-06-12 Thread Jens
Out of curiosity, is this library open source or is it likely to be? It will soon be open source. -- 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

Re: is there any way to trigger a method when users mouse over the Title of a column in GWT-CellTable?

2014-06-12 Thread Tom
I tried HeaderString nameColumnHeader = new HeaderString(new ClickableTextCell ()) { @Override public String getValue() { return Name; } @Override public final void onBrowserEvent(Context context, Element elem, NativeEvent event) {

Re: is there any way to trigger a method when users mouse over the Title of a column in GWT-CellTable?

2014-06-12 Thread Jens
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 GWTs cells) and call the super constructor AbstractCell(String... consumedEvents) if possible or

Re: is there any way to trigger a method when users mouse over the Title of a column in GWT-CellTable?

2014-06-12 Thread Tom
Thank you Jens for your hint. I couldn't see any getConsumedEvents() so I used onBrowserEvent and it working ok. private class HeaderCell extends AbstractCellString { private String text; public HeaderCell(String text) { /* * Let the

Re: GWT view reloads when I display another view - how do I clear it?

2014-06-12 Thread Glyndwr Bartlett
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 Bartlett wrote: I have an application with a number of views. The sequence I am following is: - When the

Re: [gwt-contrib] Re: Bad link in GWT Documentation

2014-06-12 Thread David
It was in the main navigation panel. But as of this morning (GMT+1) it works fine. So I guess it had something to do with caching ? On Wed, Jun 11, 2014 at 6:01 PM, Thomas Broyer t.bro...@gmail.com wrote: Hmm, which link? (on which page) (there used to be such a bug, but it was fixed a few

[gwt-contrib] user tests fail to compile

2014-06-12 Thread Colin Alworth
I’m trying to bring https://gwt-review.googlesource.com/#/c/3361/ up to date, and after rebasing and fixing a few whitespace nits I tried to run the tests by they failed. Concerned that I had broken something I backed off to current master, and ran tests again. First I did a clean dist-dev in

[gwt-contrib] Re: user tests fail to compile

2014-06-12 Thread Colin Alworth
With some help from Jens Nehlmeier over in ##gwt, it looks like there are two distinct issues preventing the build from passing presently The first is that the class ImmediateCompileFails does in fact cause problems with compiling - the simplest fix was to tell the compile.tests target to leave

[gwt-contrib] Re: user tests fail to compile

2014-06-12 Thread Michael Prentice
I hit the same thing last night. The fix you suggested may help with Ant, but it does not resolve the compile errors in Eclipse :( It doesn't look like Eclipse has any Annotations to ignore these types of severe errors either, I just pulled in the 4 commits from today and they don't help with

[gwt-contrib] Re: user tests fail to compile

2014-06-12 Thread Michael Prentice
Full clean Ant build just finished and it passed with the build.xml tweak and the requestfactory-apt.jar update. Thanks Colin. Eclipse still unhappy though of course. Is there an issue/patch for this? Has anyone tracked down the original change set that caused this? I might be able to take a