Re: GWT & Dagger 2

2015-09-22 Thread alucard
Are there any examples/tutorials on how to use Dagger2 with GWT. It would be very helpful. On Tuesday, August 18, 2015 at 4:13:59 PM UTC+2, Jens wrote: > > Could you please be a little more precise? I didn't manage to install the >> fork, and since the pull request still hasn't been accepted it

Re: Super Dev mode, intellij Idea 14 and "File size exceeds configured limit..."

2014-11-12 Thread alucard
Thanks for the suggestion. Indeed stepping over/into eventualy switches back to java. Anyway it is a really annoying "feature". I'll try and report it to intellij. On Wednesday, November 12, 2014 12:11:54 PM UTC+1, Jens wrote: > > It seems like a timing issue / bug in intellij. If you use the st

Super Dev mode, intellij Idea 14 and "File size exceeds configured limit..."

2014-11-12 Thread alucard
I managed to somehow make work the superdev mode in Idea 14. I put a breakpoint at the beginning of my code and it is hit. The appropriate java source file is presented in Idea. However, after a couple reloads (change something + recompile) the breakpoint is hit but a javascript file is shown -

Re: Unable to use debugger

2014-09-24 Thread alucard
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 put in a > breakpoint and attempt debug the code, it fails to stop at the breakpoint. > Any one kno

Source maps and Chrome Apps

2014-03-10 Thread alucard
I managed to create a GWT Chrome Appbut now I would like to use source map debugging with that app. Is this feasible? I guess I'd need to turn on the source map generation, somehow embed the java sources in the .crx file and tell the source maps whe

Re: Chrome apps and GWT

2014-02-14 Thread alucard
ed to try a different GWT linker that supports cross-site > requests. I'll look to see which one I used tonight. > On Feb 10, 2014 8:52 AM, "alucard" > > wrote: > >> I am not sure I understood well but it seems that you loaded the GWT app >> in a webvi

Re: Chrome apps and GWT

2014-02-09 Thread alucard
I am not sure I understood well but it seems that you loaded the GWT app in a webview or something similar. That is not what I meant. I'd like to be able to invoke the chrome.* apis from my GWT app (after I wrap them). I tried this by modifying the Browser sample app

Chrome apps and GWT

2014-02-09 Thread alucard
Is it possible to develop Chrome Apps in GWT. I have tried and have encountered the dreaded CSP problem as described here.

Re: How to execute periodic timers on the server side GAE?

2013-04-29 Thread alucard
This is not a GWT question so you better check for info here. I can suggest to read this . On Friday, April 26, 2013 9:09:15 PM UTC+2, membersound wrote: >

Re: Saving results from GWT-RPC call on client

2013-03-19 Thread alucard
Hello JeanV, I made a googlecode project for you (and whoever else wishes to use the serialization library). I included instructions on how to use it. Check it out and let me know if there are problems. I'll try to fix them. Cheers On Tuesday, Mar

Re: Is there any ArrayMap?

2013-03-18 Thread alucard
Have you tried looking into guava-gwt ? On Monday, March 18, 2013 1:40:06 PM UTC+1, membersound wrote: > > Hi, > > I'd need some client-side ArrayMap: a combination of a LinkedHashMap that > preserves the order of insertion, and some kind of index() me

Re: GWT 2.5.1 now available

2013-03-12 Thread alucard
Thank You for the great work, it is much appreciated. Keep the new stuff coming. On Tuesday, March 12, 2013 2:11:16 AM UTC+1, Matthew Dempsky wrote: > > Hi everyone, > > We're excited to announce the GWT 2.5.1 release! There will be an > announcement soon on the GWT Blog

Re: I/O 2013 - GWT Sessions?

2013-03-08 Thread alucard
There is some info here: https://plus.google.com/u/0/116224868564491909221/posts/M5ctPLTwp6W Ray says there might be a couple of sessions but isn't sure. On Wednesday, March 6, 2013 11:56:52 PM UTC+1, James wrote: > > I know it's earlybut is anyone familiar with the planned Google Web > Tool

Re: GWT dev mode and GIN and dependency injection in general

2013-03-01 Thread alucard
On Thursday, February 28, 2013 11:21:48 PM UTC+1, alucard wrote: >> >> >> >> On Thursday, February 28, 2013 6:43:11 PM UTC+1, Marc wrote: >>> >>> Hello! >>> >>> I just experimented somewhat with Gin and realized that it (v2.0) seems >&g

Re: GWT dev mode and GIN and dependency injection in general

2013-02-28 Thread alucard
On Thursday, February 28, 2013 6:43:11 PM UTC+1, Marc wrote: > > Hello! > > I just experimented somewhat with Gin and realized that it (v2.0) seems to > break the incremental compilation feature of GWT's development mode, ie. > where I just have to save the .java source file and the gwt dev mod

Re: How to invoke Java String methods from JSNI code

2013-02-16 Thread alucard
Thanks for the tip. I'll go with that. On Saturday, February 16, 2013 12:34:05 AM UTC+1, Thomas Broyer wrote: > > > > On Saturday, February 16, 2013 12:13:04 AM UTC+1, alucard wrote: >> >> On Friday, February 15, 2013 11:15:40 PM UTC+1, Thomas Broyer wrote: >>

Re: How to invoke Java String methods from JSNI code

2013-02-15 Thread alucard
ods. So it should be possible to use the instance methods but not with the obje...@java.lang.String... notation. Any ideas on what could be used instead? On Friday, February 15, 2013 11:53:58 AM UTC+1, alucard wrote: >> >> This does not work: >> >> private static native

Re: How to invoke Java String methods from JSNI code

2013-02-15 Thread alucard
get the result you want? > > On Friday, February 15, 2013 5:53:58 AM UTC-5, alucard wrote: >> >> This does not work: >> >> private static native int test(String str) /*-{ >>return s...@java.lang.String::compareTo(Ljava/lang/String;)(

How to invoke Java String methods from JSNI code

2013-02-15 Thread alucard
This does not work: private static native int test(String str) /*-{ return s...@java.lang.String::compareTo(Ljava/lang/String;)("test"); }-*/; It dies with the following exception: com.google.gwt.core.client.JavaScriptException: (Error) @test.client.Test::test(Ljava/lang/String;)([string: 'h

Re: GWT Window Scroll Bottom hit detection

2012-11-27 Thread alucard
Have you seen this showcase example. When you scroll down the list it triggers an event when it reaches the end of the list on which You could load more data. See the code for ShowMorePagerPanel. HTH On Tuesday, November 27, 201

Re: Increasing Client-side Storage

2012-11-08 Thread alucard
If you are developing for mobile devices you could try with Phonegap (aka Apache Cordova ). They have a fileand a storage

Will there be GWT sessions on this year's (2012) Google I/O?

2012-04-20 Thread alucard
The title says it all. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/7UhyLIt1z14J. To post to this group, send email to google-web-toolkit@go

addWindowClosingHandler on new opened window

2010-06-07 Thread alucarD
Hi I am implementing hybrid protocol (openid + oauth) in popup window. I want know when the "helper" popup window is closing becouse I must do some code before it's close. Code like this dont work on new opened "helper" window, but on entire application: Window.open("http://www.google.pl";, "popup