Re: HTTP Client API for GWT - Requestor (Announcement)

2015-01-07 Thread Slava Pankov
Sounds great! Thank you. On Wednesday, January 7, 2015 12:31:19 PM UTC-8, Danilo Reinert wrote: > > Finally, a real HTTP Client API is available for the GWT ecosystem: > Requestor. > It was released today (Jan 7th) under the version 0.1.0 but is being > developed for almost a year. > The project

Re: Development Mode will not be supported in Firefox 27+

2015-01-07 Thread Slava Pankov
Just tiny update. Dev mode is still working just fine on Windows with Chromium 38.0.2125.0 (292384) from Dart 1.8.3 distribution. On Monday, February 3, 2014 4:01:41 PM UTC-8, Brian Slesinsky wrote: > > Mozilla has stopped exporting some C++ symbols that the Firefox plugin > relies on [1]. There

Re: Where to call an Action when user remove an uploaded image in GWTUpload?

2015-01-07 Thread Manuel Carrasco MoƱino
Answered in stackoverflow, let me know if this solution works for you. On Tue, Sep 30, 2014 at 11:38 AM, Tom wrote: > I am using GWTUpload , the library is in here > https://code.google.com/p/gwtupload/ > > The Example code at client side found on that website has this structure: > > // Attach

HTTP Client API for GWT - Requestor (Announcement)

2015-01-07 Thread Danilo Reinert
Finally, a real HTTP Client API is available for the GWT ecosystem: Requestor. It was released today (Jan 7th) under the version 0.1.0 but is being developed for almost a year. The project has a great documentation and a showcase application. More features and improvements are already planned. Th

Re: SafeHtmlTemplate display alternative (backgorund- or cell-) image inside (mgwt)CellList-Item if image not available

2015-01-07 Thread Jens
A bit unfortunate that GWT has a CellList and MGWT has a CellList and both are totally different. Maybe you should ask this on a MGWT mailing list? But given that MGWT CellList is a Widget you can add any event handler to it using addDomHandler(). I am not sure about the error event but I would

Re: ClassCastException when trying SuperDevMode on my application with 2.7

2015-01-07 Thread Roland
Here's a bit of follow up on this issue. First of all as pointed out in the discussion in this issue (which links to this G+ post ) this problem is not related

Re: SafeHtmlTemplate display alternative (backgorund- or cell-) image inside (mgwt)CellList-Item if image not available

2015-01-07 Thread marian lux
I tried to create my own custom ImageLoadingCell but I have a problem to get any Browser Event fired. My custom cell extends AbstractCell and if I overwrite the Browser Event method. E.g.: @Override public void onBrowserEvent(Context context, Element parent, ActivityItem value, NativeEven

Re: Can IntelliJ show variable values rather than type when debugging via SDM?

2015-01-07 Thread Richard Wallis
Thanks will give it a try. On Wed, Jan 7, 2015 at 4:27 PM, Jens wrote: > Only manually. Right click on a node in the variables section and select > "evaluate expression...". In the new window add .toString() to the > expression and hit evaluate. > > -- J. > > -- > You received this message becau

Re: Can IntelliJ show variable values rather than type when debugging via SDM?

2015-01-07 Thread Jens
Only manually. Right click on a node in the variables section and select "evaluate expression...". In the new window add .toString() to the expression and hit evaluate. -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscri

Can IntelliJ show variable values rather than type when debugging via SDM?

2015-01-07 Thread Richard Wallis
Trying out IntelliJ and the one thing keeping me from switching is that the debugger shows a variable's type instead of value. eg: an ArrayList containing "Foo" and "BAR" will show as ArrayList$ instead of ["FOO", "BAR"] Has anyone got the debugger to show the value of toString() instead of the

Re: com.google.gwt.core.client.JsonUtils,safeEval(String) throws exception in GWT 2.7

2015-01-07 Thread funkforce
Thanks Jens, I think that should be it. I was able to recreate the error my self when setting compatibility view on ie 8. OT: Reading the gwt source is a joy! So clear and so easy to understand and good comments. Yes I am sure there are places were this is not the case but from what I have see