Re: Why “word-wrap” css style doesn't work inside a (GWT)?

2014-03-31 Thread Tom
I couldn't fix the tag so I start to use Grid. But Grid din't recognize the *break-word* Subject in Css .myBreakWord{ word-wrap:break-word; table-layout:fixed; } Is there anything wrong with my code? On Monda

Send data (keep alive probe) across GWT RPC connection

2014-03-31 Thread Jeffrey Argo
I have a web application running on an Amazon server using a Elastic load balancer and when I make a RPC call between my client and the server it is timing out after 1 minute, because there is no activity on the RPC connection for more then a minute. The reason there is no activity on the conne

Re: How to access a web page in Frame

2014-03-31 Thread Leon
com.google.gwt.dom.client.Document.getElementsByTagName("body") returns one Node. I can cast it into Element and do some style changes in Java code. Any style changes in Java code is not reflected in html code that is confirmed by Firebug. com.google.gwt.dom.client.Document.getElementsByTagN

Re: How to access a web page in Frame

2014-03-31 Thread Leon
I don't know why com .google .gwt .dom .client .Document.getElementsByTagName("div") returns an empty NodeList. Is there a solution how to get a element in terms of tag name? Leon On Monday, March 31, 2014 5:59:47 AM UTC-4, Jens wrote: > > Document iframeDoc = ((IFrameElement) > frame.getE

Re: using gwt with hibernate example

2014-03-31 Thread Mic L
Thank you it was that problem and now it works. On Saturday, March 29, 2014 11:30:06 PM UTC+10, Mic L wrote: > > HI, > I have found a nice article "using gwt with hibernate > example". > However, I have trouble to import this > c

Re: Why “word-wrap” css style doesn't work inside a (GWT)?

2014-03-31 Thread Jens
> > Do you know how to fix it? > The most basic example works: http://jsfiddle.net/84dsH/ So investigate your CSS using your browsers Dev Tools. -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and

Re: How to access a web page in Frame

2014-03-31 Thread Jens
Document iframeDoc = ((IFrameElement) frame.getElement()).getContentDocument(); If you need that more often then you should probably extend GWTs Frame class and make a public method to access the content document. Keep in mind that you should wait until the frame is loaded using frame.addLoadH

Re: Why “word-wrap” css style doesn't work inside a (GWT)?

2014-03-31 Thread Tom
i did but it look really ugly. Ex: I got a DockLayoutPanel & in the I have a HTMLPanel that hold . So if i use then some how the text inside the table were centralised like this | Aa |---> this is the edge of the

Re: window namespace in super-dev-mode

2014-03-31 Thread Klemens Schrage
Nevermind... It seems to be solved already... https://gwt.googlesource.com/gwt.git/+/7ed2e49921fb67ac4998186a7b33f421d2b42729 Am Montag, 31. März 2014 09:34:50 UTC+2 schrieb Klemens Schrage: > > Hello, > > I'm experiencing some problems when debugging (especially) static methods > in super-dev-

Re: GWT Application not showing in Safari

2014-03-31 Thread Jens
> > I have a iPad Air available, but I cannot even show the source of the host > page. > Can you install Google Chrome on the iPad and see if your app works in Google Chrome? On iOS every browser is forced to use the same rendering engine as mobile Safari but they are not allowed to use JIT.

DateTimeFormat is not showing the locales specific formatting.

2014-03-31 Thread Mohammad Al Quraian
Hi, I am using the DateTimeFormat and it's working fine for English, however, in Arabic it's showing the exact value as shown for the English locale! Here's the code: public static String getFormattedDate(String date) { final DateTimeFormat formatter = DateTimeFormat.getFormat("-MM

Re: GWT Application not showing in Safari

2014-03-31 Thread Thomas Broyer
On Monday, March 31, 2014 10:37:34 AM UTC+2, Magnus wrote: > > What about the promise of GWT: > http://www.gwtproject.org/doc/latest/FAQ_GettingStarted.html > > "GWT supports the following browsers: > > >- Firefox >- Internet Explorer 6, 7, 8, 9 >- Safari 5, 6 >- Chromium and Goog

How to access a web page in Frame

2014-03-31 Thread Leon
I open a web page in Frame. I need to access its dom from another widget. How do I do it? Thanks, Leon -- 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 g

Re: GWT Application not showing in Safari

2014-03-31 Thread Magnus
I have a iPad Air available, but I cannot even show the source of the host page. What about the promise of GWT: http://www.gwtproject.org/doc/latest/FAQ_GettingStarted.html "GWT supports the following browsers: - Firefox - Internet Explorer 6, 7, 8, 9 - Safari 5, 6 - Chromium and G

window namespace in super-dev-mode

2014-03-31 Thread Klemens Schrage
Hello, I'm experiencing some problems when debugging (especially) static methods in super-dev-mode in Chrome. When I have inspected / unfolded the this-node in the scope variables view on a previous breakpoint the devtools-window begins to hang when entering a breakpoint in a static method. Chr