Re: DateBox getDatePicker() and setCurrentMonth()

2013-06-21 Thread Lukasz Plotnicki
Hi Jens, this is a really good idea. Thank you for this! Am Donnerstag, 20. Juni 2013 19:33:34 UTC+2 schrieb Jens: When you focus a DateBox then the method DateBox.showDatePicker() is called. This method calls datePicker.setCurrentMonth() with the date parsed from the TextBox text or the

DateBox getDatePicker() and setCurrentMonth()

2013-06-20 Thread Lukasz Plotnicki
Hi, does anybody know, why I when I access the *DatePicker* of a *DateBox* via the *getDatePicker()* method and try to set it to show a specific month (via the *setCurrentMonth(Date month)* method), it simply does not work? Have I misunderstood the API? The *setCurrentMonth()* method works

Re: DateBox getDatePicker() and setCurrentMonth()

2013-06-20 Thread Lukasz Plotnicki
, Patrick Tucker wrote: In 2.5.1, I believe the earlier versions are the same, getDatePicker() returns the actual DatePicker so it should work as advertised. On Thursday, June 20, 2013 5:28:39 AM UTC-4, Lukasz Plotnicki wrote: Hi, does anybody know, why I when I access the *DatePicker

Re: Joda Time Jodatime in GWT server

2013-04-17 Thread Lukasz Plotnicki
Hi, AFAIK there is no gwt-port of jodatime available. So you will not be able to use jodatime in your *client *or *shared *packages as this library dependencies are not present in the emulated JRE on the client. If you have a *DTO* layer, you can then easily convert your jodatime objects in to

Re: Best way to schedule periodic reminder?

2013-01-31 Thread Lukasz Plotnicki
Alternatively to using the Timer – as the time period you are interested in is quite long (1h) - you could just introduce a check on any client action, where you compare the time of last save call and the current time. Then you don't have the extra resources needed for the Timer-based

Re: How to upload a file only on the client side?

2013-01-30 Thread Lukasz Plotnicki
Hi, AFAIK you can not access this file on the client as it would violate the sandbox principle. To do something like this, you could use the HTML5 file api → maybe this library will help you: http://code.google.com/p/lib-gwt-file/ Cheers, Lukasz Am Mittwoch, 30. Januar 2013 13:26:23

Re: Debug Id (or equivalent) for CellTable elements?

2013-01-25 Thread Lukasz Plotnicki
What about using XPath and combining different attributes,e.g driver.findElement(By.xpath(//div[contains(@class,'menuTitle') and contains(.,'Register Menu')])) We are using it and are quite happy as it is panel/layout-structure independent. The performance is not as good as with By.id, but

Re: Problems deploying GWT app in Tomcat

2013-01-24 Thread Lukasz Plotnicki
Should it not be: servlet-mapping servlet-nameloginServlet/servlet-name url-pattern*/betelo2/login*/url-pattern /servlet-mapping servlet-mapping servlet-namecommonDataServlet/servlet-name url-pattern*/betelo2/commondata*/url-pattern /servlet-mapping HTH, Lukasz Am

Re: call to panels using UiBinder

2013-01-24 Thread Lukasz Plotnicki
There is a variety of solution, how to address this. You could implement it completely by yourself, introducing some top-level object, controlling which view (panel) should be rendered at which time. Preferably you would use an event bus and change the ui events to let the top-level object

Re: call to panels using UiBinder

2013-01-24 Thread Lukasz Plotnicki
There is a variety of ways, how to address this. You could implement it completely by yourself, introducing some top-level object, controlling which view (panel) should be rendered at which time. Preferably you would use an event bus and change the ui events to let the top-level object know,

Re: Problems deploying GWT app in Tomcat

2013-01-23 Thread Lukasz Plotnicki
As Thomas already stated, the best way would be to use a proper build system. I use maven and maven-gwt-plugin which works just perfectly. But if you don't have any spare time to switch to maven right now, you will get your app running performing your step 1 2 and then putting everything in

Re: Mehrbenutzerfähigkeit der Serverseite / Multiuserability serverside

2012-12-21 Thread Lukasz Plotnicki
Hi Sascha, this depends on your server-side code and architecture. You need to provide more information to give us an opportunity to help you. What should your application do? In general, the server-side of an GWT app behave accordingly to the normal session-pattern (as the GWT-RPC services

Re: Can This Be Done?

2012-04-20 Thread Lukasz Plotnicki
Hi Al, if by this functionality you mean the interactive chart, then yes: take a look at google apis and especially the visualization api with gwt integration: http://code.google.com/p/gwt-google-apis/ HTH, Lukasz Am Donnerstag, 12. April 2012 02:01:18 UTC+2 schrieb Al Yameen: Hi all, Can

Re: Hibernate ClassCastException in GWT hosted mode only

2012-03-08 Thread Lukasz Plotnicki
Does anybody know a workaround (other then rollback to and old hibernate version) for this issue? Am Montag, 20. Februar 2012 07:58:57 UTC+1 schrieb Artem V. Navrotskiy: This is Hibernate 4.0.0+ bug: https://hibernate.onjira.com/browse/HHH-7084 -- You received this message because you are

Re: GWT RPC not working behind Apache and Tomcat

2012-02-26 Thread Lukasz Plotnicki
Hi, our GWT App is running in this particular setting without any problems. Apache forwards anything with **/OurApp* to tomcat via *AJP* protocol (apache tomcat AJP connector). Are you also using AJP or mod_rewrite? Cheers, Lukasz Am Samstag, 25. Februar 2012 18:25:24 UTC+1 schrieb mukarev:

Re: GWT for Eclipse on linux

2011-12-06 Thread Lukasz Plotnicki
Just download and use the eclipse version from eclipse.org. I work only on linux (ubuntu) and had no problems whatsoever with eclipse and the google plugin for eclipse. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this

Re: BigBill has a newbie question...

2011-11-25 Thread Lukasz Plotnicki
Wouldn't it be easier to just use the eclipse GWT wizard for a new GWT project - which will create a well documented, simple project containing all the basic stuff which you can run and analyse and therefore understand quite quickly... (I'm assuming that you installed the google plugin for

Re: Best Visualization for GWT?

2011-11-22 Thread Lukasz Plotnicki
http://www.moxiegroup.com/moxieapps/gwt-highcharts/ looks very nice. -- 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/-/jtgV1wlVWy0J. To post to