Re: question on GWT showcase examples

2015-02-19 Thread dominic jansen
Hi Magnus, when you look for the GWT Showcase code, have a look at the github sources: https://github.com/gwtproject/gwt/tree/master/samples/showcase/src/com/google/gwt/sample/showcase I guess there you find all you need :) Best, dom 2015-02-19 8:53 GMT+01:00 Magnus alpineblas...@gmail.com:

Re: Can i access AppEngine Datastore(Using JDO) from GWT client coding.....

2011-04-26 Thread dominic jansen
GWT provides a RPC mechanism based on Java Servlets to provide access to server side resources like JDOs. Take a look at the Dev Guide and of course at the Tutorial http://code.google.com/intl/de-DE/webtoolkit/doc/latest/DevGuideServerCommunication.html

Hierarchical Places in GWT 2.1

2010-12-15 Thread dominic jansen
Hey, is there a way to implement hierarchical places in gwt 2.1? E.g. i want: http://www.myexample.com/foo/bar In gwt 2.1 i get sth like this: http://www.myexample.com#foo:bar Regarding some posts of Thomas Broyer and the GWTP team it looks like there is no direct way to use hierarchical

Re: How could I overwrite padding margin properties in standard.css style?

2010-12-09 Thread dominic jansen
hey, you can try it this way: cancelButton.setStylePrimaryName(activeJob); this will override all properties of the standard.css with you own styles. best dom 2010/12/9 vkrejcirik vkrejci...@gmail.com: I use Standard GWT style, so my buttons have .gwt-Buttons style. I create my css file,

Re: Facing some problems after switching to GWT 2.1 from GWT 2.0.4

2010-12-03 Thread dominic jansen
hi aditya, i ve noticed that there are different behaviours for the KeyPressHandler for each browser (e.g. for me the safari browser did not recognize the keypressevent). maybe you can use the KeyDownHandler or KeyUpHandler instead of the KeyPressHandler. this worked for me best, dom

Re: OT: Re: how to achieve pretty URLs in GWT 2.0 application

2010-12-01 Thread dominic jansen
hey, try these links: http://code.google.com/webtoolkit/doc/latest/DevGuideMvpActivitiesAndPlaces.html http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsHistory.html works fine for me best dom 2010/12/1 Kenneth Jacker khjac...@gmail.com:

Re: OT: Re: how to achieve pretty URLs in GWT 2.0 application

2010-12-01 Thread dominic jansen
yes, you are right, on ff 3.6 and safari 5 it did not work for me, but on good old ie6 it works. if you need the pdf, send me a short notice best, dom 2010/12/1 Kenneth Jacker khjac...@gmail.com: try these links:   [ Complete URLs deleted.  -khj ] I have tried them.  The pages are

How to style MenuBar in CSS

2010-10-07 Thread dominic jansen
Hi, i have some problems with styling a menubar via css. The standard gwt css looks like this: http://gwt.google.com/samples/Showcase/Showcase.html#!CwMenuBar My goal is to change the background-color to red. Manipulating the gwt css works fine. I can change the background of the horizontal

Re: How to style MenuBar in CSS

2010-10-07 Thread dominic jansen
hey christian, thanks for your answer! but it looks like the MenuItemSeparator defines the style only for the seperator in the horizontal menubar (if seperators are added) - e.g. the | in foo | bar when i override the style, there are no changes. the whole vertical menubar is surrounded with

Re: cookies and expiry

2010-07-07 Thread dominic jansen
Hey Nataraj, i have the same problem. First of all, your code seems to be correct. I did it in the same way following the class despriction. When you set the expiring date to one week (Date expires = new Date(new Date().getTime() + (1000 * 60 * 60 * 24 * 7));) it will work and you get a cookie.