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

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: 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 step

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 knows

Source maps and Chrome Apps

2014-03-10 Thread alucard
I managed to create a GWT Chrome Apphttps://developer.chrome.com/apps/about_appsbut 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

Re: Chrome apps and GWT

2014-02-14 Thread alucard
AM UTC+1, Andrew Mackenzie wrote: You might need 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 slice.of...@gmail.com javascript: wrote: I am not sure I understood well but it seems that you loaded

Chrome apps and GWT

2014-02-09 Thread alucard
Is it possible to develop Chrome Appshttp://developer.chrome.com/apps/about_apps.html in GWT. I have tried and have encountered the dreaded CSP problem as described herehttp://stackoverflow.com/questions/12123178/can-not-make-gwt-application-work-as-chrome-packaged-app-probably-due-to-csp. I

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

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 herehttps://groups.google.com/forum/?fromgroups=#!forum/google-appengine. I can suggest to read thishttps://developers.google.com/appengine/docs/java/config/cron?hl=en . On Friday, April 26, 2013 9:09:15 PM UTC+2, membersound wrote: Hi,

Re: Saving results from GWT-RPC call on client

2013-03-19 Thread alucard
Hello JeanV, I made a googlecode project https://code.google.com/p/gwt-serialization/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,

Re: Is there any ArrayMap?

2013-03-18 Thread alucard
Have you tried looking into guava-gwthttps://code.google.com/p/guava-libraries/ ? 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() method

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

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

2013-03-01 Thread alucard
, 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 to break the incremental compilation feature of GWT's development mode, ie. where I just have

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 mode

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: String is a special beast, as it's emulated

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:

Re: How to invoke Java String methods from JSNI code

2013-02-15 Thread alucard
? 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;)(test); }-*/; It dies with the following exception: com.google.gwt.core.client.JavaScriptException

Re: How to invoke Java String methods from JSNI code

2013-02-15 Thread alucard
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 int test(String str) /*-{ return s...@java.lang.String::compareTo(Ljava

Re: GWT Window Scroll Bottom hit detection

2012-11-27 Thread alucard
Have you seen this showcase examplehttp://gwt.google.com/samples/Showcase/Showcase.html#!CwCellList. 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, 2012

Re: Increasing Client-side Storage

2012-11-08 Thread alucard
If you are developing for mobile devices you could try with Phonegaphttp://phonegap.com/ (aka Apache Cordova http://incubator.apache.org/cordova/). They have a filehttp://docs.phonegap.com/en/2.2.0/cordova_file_file.md.html#Fileand a

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

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 log