Re: Introducing GWT-Tour 0.1

2014-01-16 Thread Alain Ekambi
@Danilo Thx. What do you mean by changing history ? 2014/1/17 Danilo Reinert > Great Alain! > > Does it support chaging History? > > -- > D. Reinert > > Em quinta-feira, 16 de janeiro de 2014 19h37min09s UTC-3, Alain escreveu: >> >> I did post in the G+ community short after the 0.1 release. >

Re: Introducing GWT-Tour 0.1

2014-01-16 Thread Danilo Reinert
Great Alain! Does it support chaging History? -- D. Reinert Em quinta-feira, 16 de janeiro de 2014 19h37min09s UTC-3, Alain escreveu: > > I did post in the G+ community short after the 0.1 release. > Feedback was pretty cool there too. > > Thank you guyz :) > > > > 2014/1/16 Boris Brudnoy > > >>

Re: new to GWT + IntelliJ v13: how do I "run" my project.

2014-01-16 Thread Danilo Reinert
On the right side of the IDE there's some tabs, including one called 'Maven Projects'. Open it, then expand your client project (if you separate server and client) -> Plugins -> gwt -> double click on gwt:run goal. This is a shortcut to executing 'mvn gwt:run' via command line. -- D. Reinert

Re: Introducing GWT-Tour 0.1

2014-01-16 Thread Alain Ekambi
I did post in the G+ community short after the 0.1 release. Feedback was pretty cool there too. Thank you guyz :) 2014/1/16 Boris Brudnoy > That's pretty awesome. Why not post it on the G+ community page? > > BORIS BRUDNOY > Java/GWT Web Software Developer > (LinkedIn

Re: ClassNotFoundException: com.google.gwt.dev.util.Preconditions when compiling with 2.6.0 RC1

2014-01-16 Thread Michael Prentice
I was able to get my project to build with GWT 2.6rc4 after upgrading EventBinder to 1.0.1 and Gin to 2.1.2. I wanted to commit my EventBinder and Gin upgrades but not yet commit the change to GWT 2.6. This didn't work though. Using Gin 2.1.2 with GWT 2.5.1 generated the following exceptions on

Re: Introducing GWT-Tour 0.1

2014-01-16 Thread Boris Brudnoy
That's pretty awesome. Why not post it on the G+ community page? BORIS BRUDNOY Java/GWT Web Software Developer (LinkedIn , Careers 2.0 ) On Thu, Jan 16, 2014 at 3:18 PM, Alain Ekambi wrote: > Thx. > I hope you wil

Re: Is there any risk of hacker intercepting the session data that is downloaded into client website in GWT?

2014-01-16 Thread Ed
This concerns a general session id hijacking question that concerns any JS driven site. See www.owasp.org how to deal with this. Ensuring that all traffic goes over https is a good start. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. T

Re: Introducing GWT-Tour 0.1

2014-01-16 Thread Alain Ekambi
Thx. I hope you will find it useful like we did. Please build from source since I added some bug fixes since the last release. Regards, Alain 2014/1/16 doright > this looks great Alain. I'm going to give it a go tomorrow on my GWT > app... > > thanks! > > > On Friday, June 21, 2013 10:22:57 P

Re: StorageMap.StorageEntryIterator#remove() - Issues with order?

2014-01-16 Thread Jens
> > Should I open an issue for this? > Sure. I don't think the current implementation will change in the near future (as it seems to work in all browsers nowadays) but at least that problem will be tracked, can be found by others if it becomes relevant and can be used to discuss alternative im

Re: How to adjust a GWT frame height to get no scrollbars (100% of body content)?

2014-01-16 Thread Wayne Rasmuss
You're right, there's no frames there, but you should be able to make them behave like other content I think. I saw you are using mgwt. Are you using the mgwt scroll panel? It can probably work either way, but it would help to know. Can you point me to a live url, or maybe capture the DOM using

Re: Introducing GWT-Tour 0.1

2014-01-16 Thread doright
this looks great Alain. I'm going to give it a go tomorrow on my GWT app... thanks! On Friday, June 21, 2013 10:22:57 PM UTC, Alain wrote: > > GWT-Tour is a small GWT library that can help you implement a nice tour of > your GWT/Web app. > So if you ever wanted to show your users how to use yo

Re: How to adjust a GWT frame height to get no scrollbars (100% of body content)?

2014-01-16 Thread marian lux
Hi Wayne, thank you! It would be very nice if you could help me with some CSS tweaks. Your application has a good looking design and it is a good, innovative idea :-) But I did not see any frames there, so I hope you can help me with my problem: I want the same scrolling experience on my gwt-fr

new to GWT + IntelliJ v13: how do I "run" my project.

2014-01-16 Thread Oblio Leitch
I see that folks use the GWT Eclipse Plugin to run & test their projects. But I'm using IntelliJ & the gwt-maven-plugin. What are the steps for building & launching the app locally so I can see it in a browser? TIA -- You received this message because you are subscribed to the Google Groups

Re: StorageMap.StorageEntryIterator#remove() - Issues with order?

2014-01-16 Thread Andreas Kohn
Should I open an issue for this? On the question of using the other order guarantee, I guess this depends on how reliably that is actually implemented in the browsers :) -- Andreas On Mon, Jan 6, 2014 at 1:16 PM, Jens wrote: > Looks like you are right and the iterator does not account for suc

Is there any risk of hacker intercepting the session data that is downloaded into client website in GWT?

2014-01-16 Thread Tom
Ok, Here is my scenarios. I manage session at server side, see the following code: HttpSession session = requestProvider.get().getSession();String userMeaningID=(String)(session.getAttribute("userMeaningID")); Then I bring the userMeaningID into client website, this code is at clinet pri

Re: How to adjust a GWT frame height to get no scrollbars (100% of body content)?

2014-01-16 Thread Wayne Rasmuss
Admittedly, I didn't look too closely at your use case, but I believe I've accomplished similar things using css with mgwt. You can check out my app at app.carellaborate.com. One thing that hung my up was in mgwt the scroll panel has to be a direct child of touch panel, or something like that

Re: seedTable error in web mode?

2014-01-16 Thread Ed
Strangely I get this exception again. I attached the moment of the exception in Chrome and it's console output (in Detail log mode). I think that something isn't yet initialized, but find it hard to pin point the exact cause. Any advice?

Re: Error repainting a FlowPanel on an onDrop event widget

2014-01-16 Thread David Martínez
I have the solution. I put the method that repaint de FlowPanel in the onDragStop event. addDragStopHandler(new DragStopEvent.DragStopEventHandler() { @Override public void onDragStop(DragStopEvent event) { GWT.log("AreesPanel#o

GreetingServiceImpl extends RemoteServiceServlet, HttpServlet implements GreetingService

2014-01-16 Thread Davide Micheletti
Hi all, i need to extend HttpServlet to the server for upload files. Or i need to know how to create 2 different server's classes and use 1 of these to upload files. Thanks in advance. Davide -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" grou

Re: Error repainting a FlowPanel on an onDrop event widget

2014-01-16 Thread David Martínez
The event onDragStop don't arrive to execute. El dijous 16 de gener de 2014 11:45:51 UTC+1, David Martínez va escriure: > > Hi, > > Now I implemented the dragStart and dragStop in the > DraggableWidget but the error continue: > > addDragStopHandler(new DragStopEvent.DragStopEventHandler() { >

Re: Error repainting a FlowPanel on an onDrop event widget

2014-01-16 Thread David Martínez
Hi, Now I implemented the dragStart and dragStop in the DraggableWidget but the error continue: addDragStopHandler(new DragStopEvent.DragStopEventHandler() { @Override public void onDragStop(DragStopEvent event) { GWT.log("Are

Error repainting a FlowPanel on an onDrop event widget

2014-01-16 Thread David Martínez
Hi, I'm repainting all the content of a FlowPanel that have DraggableWidget. I don't know where the application return the error, because the error is internal of GWT libraries. The error is caused in this code: public static void loadArbre(HandlerManager eventBus) { List files = Editor

Re: How to adjust a GWT frame height to get no scrollbars (100% of body content)?

2014-01-16 Thread marian lux
Jens, thank you very much! You helped me a lot! It works fine. For others, who have the same problem, here is the working code (JSNI method): public native boolean optimizeFrameSize (String id) /*-{ var newheight; var newwidth; var frame = $doc.getElementBy

Re: GWT 2.5.0-rc1 on IPad not firing click events

2014-01-16 Thread Ed
Why not using Touch events, through TapHandler (like done in mgwt). Works well on any browser. -- 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