application web sur la gestion de tickets

2014-09-25 Thread assia alami
Bonsoir, j'ai un projet concernant la création d'une application de gestion de ticket, franchement je ne sais d'où commencer ! -- 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

Re: GWT 2.6.1 w/Eclipse 4.3 plugins under Windows 8.1: failed to open the sample webapp in Chrome (it's ok w/IE)

2014-09-25 Thread Jens
Is your Chrome already 64-bit? If yes, the plugin is only compatible to 32-bit Chrome. Also Chrome is removing NPAPI plugin support (which the GWT plugin needs) so in the future you would need to use SuperDevMode + Chrome or use an older Chrome version. Same for FireFox and the Opera version

Re: GWT version with Java 8 support

2014-09-25 Thread Thanos
There were initially two aspects to java8 support. 1) Lambda compilation 2) SDK emulation It was indicated that 1 but not 2, may still make GWT 2.7. Allowing for some of the benefits for reduced verbosity now, if you avoid using java8 only JDK bits. Have both 1 and 2 been pushed to GWT 3.0

Re: Is there a tutorial that explains Places and Hyperlinks?

2014-09-25 Thread Ronan Quillevere
I wrote some articles on the subject : http://ronanquillevere.github.io/2013/03/03/activities-places-intro.html I also tried to implement Thomas Broyer's idea to solve the nesting activities problem: http://blog.ltgt.net/gwt-21-activities-nesting-yagni/ so I created a Github project, have a

Re: I need help calling GWT code from Javascript passing in generic arguments and/or callbacks -- URGENT

2014-09-25 Thread Samuel Schmid
Thank you! Helped me a lot! On Tuesday, March 6, 2012 5:53:25 AM UTC+1, babakm wrote: I built an API in GWT for accessing a series of complex services. I wanted to do tons of client side processing and I chose GWT (been doing GWT for years now). However, my users will be using Javascript.

Re: GWT version with Java 8 support

2014-09-25 Thread Thomas Broyer
On Thursday, September 25, 2014 3:57:33 PM UTC+2, Thanos wrote: There were initially two aspects to java8 support. 1) Lambda compilation 2) SDK emulation It was indicated that 1 but not 2, may still make GWT 2.7. Allowing for some of the benefits for reduced verbosity now, if you avoid

How to setup a GWT project in Plesk on a virtual machine?

2014-09-25 Thread MOE
Hey, I am a software developer in education and we learned JAVA in school. Now we have project weeks and every group should realize an application. We decided to program a card game with GWT. One of our team member is a bit familiar with GWT and we others used the google GWT introduction pages

Re: Unable to use debugger

2014-09-25 Thread Vineet G H
Its dev mode I think. On Wed, Sep 24, 2014 at 12:32 PM, alucard slice.of.life@gmail.com wrote: Are you using dev mode or super dev mode to debug? On Sunday, September 21, 2014 12:01:03 PM UTC+2, Vineet G H wrote: Hi All, I am using Eclipse Luna - Luna Release (4.4.0) with GWT and I

Re: How to setup a GWT project in Plesk on a virtual machine?

2014-09-25 Thread Jens
Well it kind of depends on what exactly you want to achieve. If you just want to run your GWT app and you don't really care about the URL then just install any Java server (Jetty, Tomcat, Glassfish, Wildfly, ...), deploy your *.war file on it and access it through your server IP address and the

pass list of valueproxy, calling merge() cause DELETE

2014-09-25 Thread Yan
Hi there, I am having a very strange problem. One parent entity proxy has a list of children value proxy objects. Start with the parent having one child in UI, when I add another child that is loaded from another database table. Then, calling merge() on parent in my JPA backend. Backend

CellList exceeds height when populated with rows

2014-09-25 Thread Aaron Weber
Another, possibly newbie, question... I created a CellList and set the visible range and width/height: cellList.setVisibleRange(0, 20); cellList.setPixelSize(200, 400); I add a SimplePager on this widget later in the code. Finally, I add this CellList to a VerticalPanel:

Re: CellList exceeds height when populated with rows

2014-09-25 Thread Jens
CellList itself can not scroll. You need to put it into a ScrollPanel and give that ScrollPanel a fixed size. Even though you have set a fixed height to the CellList it is normal that you see list items outside of that defined height because in HTML overflowing content is always visible unless

Re: Is there a tutorial that explains Places and Hyperlinks?

2014-09-25 Thread ehodges
On Wednesday, September 24, 2014 11:39:50 AM UTC-5, Jens wrote: Please don't take me offensive. Quite the opposite. You seem defensive. I would be happy to improve the documentation if I knew what I was talking about. I'm a GWT newbie, so all I have are questions. My biggest question

Re: Is there a tutorial that explains Places and Hyperlinks?

2014-09-25 Thread ehodges
On Wednesday, September 24, 2014 9:45:43 AM UTC-5, Joseph Lust wrote: There are various ways to place links in UiBinder based UI's. The most basic of these is to simply generate the UI and set the href property of your target element. Static URL's can be directly inserted in the XML using

Re: Is there a tutorial that explains Places and Hyperlinks?

2014-09-25 Thread Thomas Broyer
That's because they don't use Places, so they don't NEED a colon. GWT is a set of tools (hence toolkit) that work well together, but each has its purpose, and should IMO be learned separately before being used together. BTW, when using Places, you can do better with a widget that calls

Re: CellList exceeds height when populated with rows

2014-09-25 Thread Aaron Weber
The GWT showcase also has an example of an endless scrolling cell list. In that example the ScrollPanel itself acts as pager: http://samples.gwtproject.org/samples/Showcase/Showcase.html#!CwCellList Thank you for the pointer, and the info. I tried copying that custom pager to my

Re: Is there a tutorial that explains Places and Hyperlinks?

2014-09-25 Thread Jens
My biggest question is where do I find better documentation, because the documentation provided at gwtproject.org is incomplete and inconsistent. It may seem sufficient to someone who already knows GWT, but trust me, it doesn't provide a good introduction. That is sad to hear :( For

Re: How to setup a GWT project in Plesk on a virtual machine?

2014-09-25 Thread Andy Stevko
#1 - yes, need to hook your servlets to uris #2 - I do it all the time... #3 - apache is a web server - not a java servlet container. apache is fine for serving html/js. tomcat is fine for serving html/js and servlets. #4 - it seems that the plesk power pack has tomcat which should be enough to

[gwt-contrib] -src in DevMode EntryPoint

2014-09-25 Thread Brandon Donnelson
Could -src be added to the DevMode Entrypoint and pass that to the CodeServer EntryPoint? If there are other code server flags as well, can they be passed as well? Thanks, Brandon -- You received this message because you are subscribed to the Google Groups GWT Contributors group. To

[gwt-contrib] Re: -src in DevMode EntryPoint

2014-09-25 Thread Brandon Donnelson
Would be nice to add some type of way to override the arguments passed to code server if needed, when those args don't exist in devmode possibly. Such as: -codeserver -src path/to/resource -XcompilePerFile -- You received this message because you are subscribed to the Google Groups GWT

[gwt-contrib] Re: -src in DevMode EntryPoint

2014-09-25 Thread Brandon Donnelson
Link to the embedded legacy jar issue: https://github.com/manolo/superdevmode-launcher-legacy/issues/5 -- You received this message because you are subscribed to the Google Groups GWT Contributors group. To unsubscribe from this group and stop receiving emails from it, send an email to