Re: FileOutputStream doesn't work in a remoteServiceServlet class?

2014-01-15 Thread Vishnu Sarasan
Hello Roland, I'm facing same kind of issue. Is there any way to solve this. With Regards Vishnu On Tuesday, October 27, 2009 4:55:50 PM UTC+5:30, Rolando wrote: First, thanks for this hint. Okay, I see the problem, but I don't know how to solve it. Can you tell me what to do or do you

Re: GPE - com.google.gdt.eclipse.core.prefs - lastWarOutDir; Any way to make this a variable?

2014-01-15 Thread Thomas Broyer
On Tuesday, January 14, 2014 6:35:26 PM UTC+1, Shawn Johnson wrote: Is there a way to use or pass a variable to the Google Plugin for GWT Compile? You should ask in https://groups.google.com/d/forum/google-plugin-eclipse (or possibly StackOverflow as it's their policy; see the post in

Re: FileOutputStream doesn't work in a remoteServiceServlet class?

2014-01-15 Thread Jens
Hello Roland, I'm facing same kind of issue. Is there any way to solve this. Remove AppEngine support in your GWT project (preferences - Google) or, if you need AppEngine, then store data in one of AppEngines data stores. -- J. -- You received this message because you are subscribed to

FlexTable all borders

2014-01-15 Thread Davide Micheletti
Hi all, i need to add ALL borders to my flextable though not all cells are wrote.. i tried to add css style but it runs only if a cell is setted.. This is my css: .FlexTable tr { border: thin groove; } .FlexTable td { width: 90px; max-width: 90px; border: thin groove; } .FlexTable {

Re: FlexTable all borders

2014-01-15 Thread Jens
Choose one: - use CSS rule empty-cells:show on the table element - Fill empty cells with a dash - to indicate that there is no data for that cell - Fill empty cells with nbsp; which is a white space -- J. -- You received this message because you are subscribed to the Google Groups Google

Re: FlexTable all borders

2014-01-15 Thread Davide Micheletti
I added the CSS rule but it doesn't work.. I have added the 3rd solution but it takes a lots of time because the Table is big and i can't add a pager for some reasone.. its something wrong?? .FlexTable tr { empty-cells:show; border: thin groove; } .FlexTable td { empty-cells:show;

Re: FlexTable all borders

2014-01-15 Thread Jens
It is only supported in IE8 (standards mode) and newer IE versions. If you need to support IE6-7 then you have to fill cells with some content. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop

Re: FlexTable all borders

2014-01-15 Thread Davide Micheletti
it doesn't work in Google Chrome.. possible?? On Wed, Jan 15, 2014 at 12:45 PM, Jens jens.nehlme...@gmail.com wrote: It is only supported in IE8 (standards mode) and newer IE versions. If you need to support IE6-7 then you have to fill cells with some content. -- J. -- You received

Re: FlexTable all borders

2014-01-15 Thread Jens
In Chrome you don't even need empty-cells: show as thats the default (like in most if not all modern browsers). See: http://jsfiddle.net/R3vam/ I guess you need to check your overall CSS. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: GPE - com.google.gdt.eclipse.core.prefs - lastWarOutDir; Any way to make this a variable?

2014-01-15 Thread Shawn Johnson
Thanks for the replies Thomas! On Wed, Jan 15, 2014 at 4:33 AM, Thomas Broyer t.bro...@gmail.com wrote: On Tuesday, January 14, 2014 6:35:26 PM UTC+1, Shawn Johnson wrote: Is there a way to use or pass a variable to the Google Plugin for GWT Compile? You should ask in

How to adjust a GWT frame height to get no scrollbars (100% of body content)?

2014-01-15 Thread marian lux
I want to set the frame-height to the height of the content in my frame. So I can display it in mgwt with normal scrolling behavior. The following code is not working: in my ViewImpl.java: constructor: frame = new Frame(some-url/xyz.html); frame.getElement().setId(framename);

Re: GWT RPC Serialization on web and app server

2014-01-15 Thread Benoit GUILLOTIN
HI Entlog, How did U fix ur problem on Jmeter with the HASH.gwt.rpc file ? Im still looking for fixing this IncompatibleRemoteServiceException. Thanks for ur answer. Benoit Le jeudi 23 mai 2013 12:30:21 UTC+2, Entlog a écrit : Awesome!! Thanks. I was having problems with a jmeter test and I

Re: How to adjust a GWT frame height to get no scrollbars (100% of body content)?

2014-01-15 Thread marian lux
And here is the exception-text I get: uncaught: Exception caught: Exception caught: Exception caught: Exception caught: (TypeError) @xyz.client.views.experimental.FrameViewGwtImpl::setFrameSize(Ljava/lang/String;)([string: 'framename']): Cannot read property 'contentWindow' of null Am

GWT HashMap VS Javascript Object

2014-01-15 Thread Danilo Reinert
What are the pros/cons of using a simple Javascript Object instead a HashMap for mapping purposes? Would it perform better for few items cases, say 10 ? -- D. Reinert -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from

Re: How to adjust a GWT frame height to get no scrollbars (100% of body content)?

2014-01-15 Thread Jens
You must first add the Frame to the document otherwise doc.getElementById() can not find it. You also have to wait until the frame content is fully loaded before reading any size related values. Finally your setFrameSize() seems not optimal. You call 4x getElementById() instead of just 1x

Re: How to adjust a GWT frame height to get no scrollbars (100% of body content)?

2014-01-15 Thread marian lux
Thank you! If I understand all correct: 1) in my ViewImpl-Class in the Consructor I have to create the frame and load the content. The content (html-url) is from my war-directory: frame = new Frame(GWT.getHostPageBaseURL() + ClientData/myhtml.html); frame.getElement().setId(framename); = $doc is

Re: GWT HashMap VS Javascript Object

2014-01-15 Thread Dennis Haupt
i would expect similar performance characteristics, since both things are basically the same^^ the browser might be able to apply optimizations if the mapping are known at compile time, but other than that. i would either go all out and do a lot of research, or don't care 2014/1/15 Danilo

Re: How to adjust a GWT frame height to get no scrollbars (100% of body content)?

2014-01-15 Thread Jens
1) in my ViewImpl-Class in the Consructor I have to create the frame and load the content. The content (html-url) is from my war-directory: frame = new Frame(GWT.getHostPageBaseURL() + ClientData/myhtml.html); frame.getElement().setId(framename); = $doc is right here because it is in my

Re: GWT 2.5.0-rc1 on IPad not firing click events

2014-01-15 Thread kenny . pc . chen
It has been a while, but we fix it by adding custom event-handler for apple safair in the method initEventSystemhttp://grepcode.com/file/repo1.maven.org/maven2/com.google.gwt/gwt-user/2.5.0/com/google/gwt/user/client/impl/DOMImpl.java#DOMImpl.initEventSystem%28%29() of the file

[gwt-contrib] Re: IntelliJ IDEA set-up

2014-01-15 Thread Thomas Broyer
On Wednesday, January 15, 2014 5:52:54 AM UTC+1, Danilo Reinert wrote: Has anyone set-up gwt project in IDEA 12+ ? I know Ray Cromwell has, among others most probably. Maybe he can share some files somewhere? In the (near?) future, we'll migrate out of Ant to make it easier to

Re: [gwt-contrib] Re: IntelliJ IDEA set-up

2014-01-15 Thread Julien Dramaix
IIRC, I've just imported the projects using the eclipse files and followed the instruction in README.txt file. On Wed, Jan 15, 2014 at 10:11 AM, Thomas Broyer t.bro...@gmail.com wrote: On Wednesday, January 15, 2014 5:52:54 AM UTC+1, Danilo Reinert wrote: Has anyone set-up gwt project in

Re: [gwt-contrib] Re: IntelliJ IDEA set-up

2014-01-15 Thread Danilo Reinert
I tried importing from eclipse files but I`m still getting 8 errors: java: duplicate class: com.google.gwt.regexp.shared.RegExp java: duplicate class: com.google.gwt.regexp.shared.SplitResult java: duplicate class: com.google.gwt.validation.client.GwtMessageInterpolator java: duplicate class:

Re: [gwt-contrib] Re: IntelliJ IDEA set-up

2014-01-15 Thread Danilo Reinert
I'm unable to avoid java compiler confusion related to super classes. -- D. Reinert Em quarta-feira, 15 de janeiro de 2014 12h38min53s UTC-3, Danilo Reinert escreveu: I tried importing from eclipse files but I`m still getting 8 errors: java: duplicate class: