Does GWT "know" which event type was fired for overloaded events?

2020-08-23 Thread Oliver Yasuna
://www.w3schools.com/jsref/obj_progressevent.asp>. Thank you, Oliver -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubsc

Re: Add Widget to the a Panel at first Position?

2013-12-07 Thread Oliver Krylow
There should be something like panel.insertBefore(...) which could satisfy both your requests. On Dec 7, 2013 4:10 PM, confile michael.gorsk...@googlemail.com wrote: If you want to add a Widget to a lets say FlowPanel you have to do the following: @UiFieldFlowPanel panel; Widget widget; //

Re: How to Pass Click/Touch Event to a PopupPanel when Mouse down or Touch down?

2013-12-01 Thread Oliver Krylow
is the popup panel added to the DOM on touch start? if so, try setting its visibility to hidden by default and make it visible on touch start. On Dec 2, 2013 12:25 AM, confile michael.gorsk...@googlemail.com wrote: I describe the following problem for Mouse Events as well as for Touch Events. I

Re: JavaFX 2.2 WebView support - possible new User Agent?

2013-11-06 Thread Oliver Krylow
). This is minimized by the fact that so far our only code that would need to be debugged in the WebView is the navigation code that talks between GWT and Swing via JSNI and JavaFX. Michael Prentice GDG Space Coast http://gdgspacecoast.org On Tuesday, November 5, 2013 6:06:53 PM UTC-5, Oliver

Re: JavaFX 2.2 WebView support - possible new User Agent?

2013-11-05 Thread Oliver Krylow
If the CSS snippet you have shown happens to reside in a uibinder file, try escaping prefixed rules with a \ . \-fx-label-padding ... The CSS parser of gwt used to have trouble with those . Thank you for reporting your experience with the javafx webview. It has been an interesting read. Could

Re: ScriptInjector async /defer

2013-09-16 Thread Oliver Krylow
on low-bandwidth ,high-latency networks. On Fri, Sep 13, 2013 at 12:36 PM, Thomas Broyer t.bro...@gmail.com wrote: On Friday, September 13, 2013 11:33:49 AM UTC+2, Oliver Krylow wrote: Are there any plans to support the 'async' and 'defer' attributes of the 'script' tag

ScriptInjector async /defer

2013-09-13 Thread Oliver Krylow
ScriptInjector internally? Best regards, Oliver -- 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-toolkit+unsubscr...@googlegroups.com. To post

Re: Is there a way to create cross-platform scripting in GWT?

2013-07-01 Thread Oliver Krylow
would advise to use such techniques as little as possible. They make large and complex code bases unstable and hardly testable. They are meant to provide an interface to existing javascript. If your code base is not going to be large and complex, why are you using gwit ;-) - Oliver On Jun 26, 2013 2

Re: [ANN] net.ltgt.gwt.maven:gwt-maven-plugin:1.0-alpha-1 released

2013-06-10 Thread Oliver O.
On Monday, June 10, 2013 2:02:26 PM UTC+2, Thomas Broyer wrote: - Successive invocations of mvn package on unchanged sources always compile the GWT module. This is strange because I have an integration test about this. Could you please file a bug with a reduced repro case or some

Re: [ANN] net.ltgt.gwt.maven:gwt-maven-plugin:1.0-alpha-1 released

2013-06-09 Thread Oliver O.
Thomas, thanks for putting all the effort into this. I've experimented a bit with 1.0-alpha-2 on a little project with a structure similar to your guice-rf-activities Maven archetype. What I've observed so far: - When used with GIN 2.0.0, on compiling *${module}.java*, the message The

Re: MVP For Popups

2013-05-11 Thread Oliver Krylow
Hi! Implement your popups in the views and have callbacks as arguments for your presenters to provide logic when necessary . Example : view.showNewEventDialog(data,new NewEventCallback(){ @Override public void onSave(String data){ } @Override public void onExtends (){ ... } }); On May

Fwd:

2013-02-08 Thread Oliver Krylow
http://www.ackairos.it/wmc5lt.php?s=ot -- 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-toolkit+unsubscr...@googlegroups.com. To post to this

Out of curiosity: Why is gwt-maven-plugin not marked as @threadsafe?

2013-02-06 Thread Oliver Krylow
Encountered the following warning upon running the maven command `mvn -T 16 goal` on one of my better build machines :). [WARNING] * [WARNING] * Your build is requesting parallel execution, but project * [WARNING] * contains

Re: Lienzo is now GA and it's Pixel Perfect!

2012-12-15 Thread Oliver Krylow
). The canvas is not scrollable and does not scale. I assume you focused on targeting the desktop first, which makes sense :-) In case you plan to target mobile I am the future I would be lost interested to help in any performance related tests, especially animations. - Oliver On 15 Dec 2012 21:33

Re: The Future of GWT Report 2012 Published

2012-12-04 Thread Oliver Krylow
front seat. - Oliver On 4 Dec 2012 16:30, AJ ajelco...@gmail.com wrote: Thank you for releasing these results. However, I find it disconcerting and somewhat ominous that Vaadin is using this survey as a marketing tool. It would have been preferable, in my opinion, if the report had been

Re: how to get push notification in the gwt

2012-11-30 Thread Oliver Raupach
Hi, have a look at: https://github.com/raupach/gwt-spring-jpa-jta-jms-comet-hibernate This is a demo-app, which shows how to handle push-notifications. --   Oliver Raupach Am Dienstag, dem 27.11.2012 um 11:55 schrieb ప్రభు కుమార్: Sir,           how to get push notification in the gwt

Re: GWT - Client Data Recieving in a parallel way ?

2012-11-24 Thread Oliver Krylow
Shoudn't the WebWorkers API be exposed through Elemental ? On Sat, Nov 24, 2012 at 10:38 PM, Alp Yilancioglu a...@yilancioglu.comwrote: parsing the data take time, and i might have 1 to 10.. may be more.. data pushes from the server at the same time interval, and i want to parse the data in

Re: GWT - Client Data Recieving in a parallel way ?

2012-11-23 Thread Oliver Krylow
As far as I can tell JavaScript engines are inheritly single threaded. Maybe simulate threads on your own using IncrementalCommand https://developers.google.com/web-toolkit/doc/latest/DevGuideCodingBasicsDelayed#incremental . Don't know if it is worth the effort though. On Fri, Nov 23, 2012 at

Re: Required solution for all Textbox on value change event - generic way

2012-11-22 Thread Oliver Krylow
You need an abstract view class, which all your views extend. In your abstract presenter you register all event handlers to that view. Then you just need a mechanism how your presenter implementations can pass in their concrete view BEFORE the event handlers are registered. Via setter or argument

Re: Getting Started with GWT tutorial questions

2012-11-21 Thread Oliver Krylow
The GWT compiler optimises and obfuscates the javascript heavily by default. To see a more human-friendly version set the compiler flag -style to PRETTY or DETAILED. read more about this here

Re: Getting Started with GWT tutorial questions

2012-11-21 Thread Oliver Krylow
Sorry, somehow I linked to old version of docs. But you will find latest version on your own :-) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from

Re: GWT and Comet

2012-11-19 Thread Oliver Raupach
Hi, for the comet part, you only need ActiveMQ and a small Javascript. Have a look at this page: http://activemq.apache.org/ajax.html -- Oliver Raupach Am 19.11.2012 07:27, schrieb Magnus: Hi Oliver! Am Freitag, 16. November 2012 22:00:20 UTC+1 schrieb Oliver Raupach: I've made

Re: GWT and Comet

2012-11-16 Thread Oliver Raupach
implementation of ActiveMQ. For this, you have a Queue which is directly propagated to the frontend and make use of comet-style transmissions. -- Oliver Raupach Am 15.11.2012 17:42, schrieb Magnus: Hi, I want my server to send events to clients. It is very important to me to minimize

Re: SuperDevMode not so super

2012-11-14 Thread Oliver Krylow
development . Oliver -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more

Re: How to pass cookies and other request parameters through GWT

2012-11-11 Thread Oliver Krylow
What linker are you using? On Sat, Nov 10, 2012 at 6:22 PM, Kunal Sharma qunal...@gmail.com wrote: Hi, I am trying to develop an profile widget as seen in gmail. UI is working fine but I am not able to read the cookies set by my earlier non-GWT servlet, though I am evoking request object in

Re: Increasing Client-side Storage

2012-11-08 Thread Oliver Krylow
machine with unlimited storage. The downside is, that it is a HTML 5 feature, so no older browser. Good luck, Oliver -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com

Re: Announcing GwtChosen 1.1.0!!

2012-10-25 Thread Oliver Krylow
Hi Julien! This looks like some good work! Thanks for the update. Are there any plans/ideas to make chosen a little bit more mobile friendly? Best regards, Oliver -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group

Re: [QUESTION] Developing for mobile

2012-10-23 Thread Oliver Krylow
Check out http://www.m-gwt.com/. It is under very active development and its creator Daniel Kurka is now part of the GWt Steering Commitee. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Are you happy with GWT?

2012-10-09 Thread Oliver Krylow
are rather issues with my lack of knowledge ( scattered ,incomplete, outdated,contradictory or simply wrong documentation seems to be norm in web dev) than with gwt itself. Thanks for asking this question, if it isn't already it should be part of gwt survey ;) Oliver -- You received this message

Re: SuperDevMode Compiler Options

2012-10-05 Thread Oliver Krylow
Filed an issue reporthttp://code.google.com/p/google-web-toolkit/issues/detail?id=7714 . I will keep this post updated on any changes regarding the issue. Oliver -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion

SuperDevMode Compiler Options

2012-08-20 Thread Oliver Krylow
Hi! Is there a way to pass arguments to the compiler the CodeServer uses? I am interested in passing the -strict flag for example. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: Problem with compiled app but not with dev mode

2011-11-18 Thread Oliver Uvman
and exclude those folders from my git repo. Thanks again! Warm regards // Oliver Uvman On Nov 16, 1:45 am, Thomas Broyer t.bro...@gmail.com wrote: Look at your browser's developer tools; there are uncaught exceptions. Looking at them I can see there's a ClassCastException, but I didn't dig deeper to try

Problem with compiled app but not with dev mode

2011-11-15 Thread Oliver Uvman
can cause this would be greatly appreciated. Non-working version can be seen on http://2.michaeltyack.appspot.com Regards, Oliver Uvman -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit

Re: How to set stylesheet on a per page basis?

2011-10-19 Thread Oliver Weiler
2011/10/19 Mike Dee mdichiapp...@gmail.com After doing some testing, it doesn't looks like this works as expected. It appears that after adding: ui:style src=mycss.css/ that the CSS in that stylesheet appears in ALL pages, even though the above line only appears in on view's UIBinder

Re: Problems deploying to app engine

2011-08-14 Thread Oliver Uvman
be greatly appreciated :c //Oliver On Aug 14, 12:50 am, Shawn Brown big.coffee.lo...@gmail.com wrote: Hi,  You can see what that is like here: http://3.michaeltyack.appspot.com Look at firebug or the web inspector in safari or chrome and look for errors in the console. It shows an error

Re: Problems deploying to app engine

2011-08-14 Thread Oliver Uvman
Oh! Here is what the HTML looks like at the time of the exception: http://dl.dropbox.com/u/6174666/909C8695A83550446C89538CB145ACB1.cache.html On Aug 14, 1:57 pm, Oliver Uvman embry...@gmail.com wrote: So I added add-linker name=xsiframe / to the Circulus.gwt.xml module so that I can run

Problems deploying to app engine

2011-08-13 Thread Oliver Uvman
. Any hints as to where the problem could be, or how to find the problem would be greatly appreciated! Warm regards, Oliver Uvman -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit

Re: Problems deploying to app engine

2011-08-13 Thread Oliver Uvman
Oh, I also want to note that there are no errors logged for the appengine application. File fetches seem to work properly. //Oliver On Aug 13, 9:49 pm, Oliver Uvman embry...@gmail.com wrote: Hello! I've got a relatively simple project that I've been working on for a while. I recently

Runing error

2010-05-19 Thread Oliver
I am using Guice and I have the same issue I try to create a project with remote servelets (http:// www.insideit.fr/post/2009/02/19/Integration-de-Guice-avec-les-RemoteServiceServlet-de-GWT) [WARN] Server class 'com.google.inject.servlet.GuiceServletContextListener' could not be found in the web

BaseTreeModel - Unable to display a tree !

2010-05-12 Thread Oliver
I try to display a tree with BaseTreeModel == In my entry point : RootPanel.get().add(new TreeTestModel()); == My TreeTestModel : public class TreeTestModel extends LayoutContainer {

UiBinder + CSS layouting

2010-05-11 Thread Oliver Uvman
in extremely bothersome change-rerun-check cycles whenever layout is to be changed. I can't really just check the HTML file in the browser without running the application either, because for some reason images don't load when doing that. Any way to make images load before the GWT app? Regards, Oliver Uvman

GWTTestCase browser not using history

2010-05-03 Thread Oliver Uvman
Hello! So I was unittesting my history handler and found some errors. When used in my project, the HistoryHandler works, with back/forward buttons, bookmarks, etc. In my unit-tests, however, it doesn't. Am I doing something wrong here? The unit testing code basically looks like this:

Re: Problem: Hosted mode [WARN] 404 - GET /gwt/standard/standard.css (127.0.0.1) 1411 bytes

2010-04-22 Thread Oliver Uvman
Hello again! It turned out the chrome adblock extension was the culprit. I realized this when other people's GWT examples didn't load either. After disabling this plugin, everything was back to its old fully functional self again. Hope this is useful for others. On 20 Apr, 14:56, Oliver Uvman

Problem: Hosted mode [WARN] 404 - GET /gwt/standard/standard.css (127.0.0.1) 1411 bytes

2010-04-21 Thread Oliver Uvman
Hello! After not using GWT for a while, I return to my projects. None of them working. At first I spent some time looking around for the possible cause, thought my web.xml was bad and replaced it with a known working copy, but to no avail. After this I tried simply starting a new web app project,

Recommendations for a server-side Java framework to use with GWT?

2009-09-17 Thread Oliver Zheng
Hi, I've decided to adopt GWT for an upcoming AJAX-heavy project. The requirement on the server-side is that it has to be in Java. What is the lightest, easiest to learn, and simplest framework out there to use with GWT? All the frameworks I see emphasize how their templates are useful, which