GWT 2.0.3 with IE10 - some pages are not well rendered

2013-07-12 Thread pepgrifell
hi, We have and old application that was implemented with GWT 2.0.3 and GXT 2.2.0 library. It was working ok with IE7,IE8 but now I have tried with IE10 and some things are not rendered correctly.(didn't tested with IE9). I have added the line ** in the first page but some pages are still re

Re: call javascript function in JSP (placed in Frame object) from GWT (works in IE but not in Firefox)

2011-06-16 Thread pepgrifell
e. It's a good thing to know. > However, you can avoid that 'if' using deferred binding, based on > 'user.agent'. > Thanks for posting! > > Ezequiel Palumbo.- > > On 16 jun, 07:46, pepgrifell wrote: > > > > > > > > > hi, >

Re: call javascript function in JSP (placed in Frame object) from GWT (works in IE but not in Firefox)

2011-06-16 Thread pepgrifell
); } else { var iframe = $doc.frames ? $doc.frames['oldWebFrame'] : $doc.getElementById('oldWebFrame'); var ifWin = iframe.contentWindow || iframe; ifWin.updateRotatePattern(); } }-*/; On Jun 16, 12:05 pm, pepgrifell w

call javascript function in JSP (placed in Frame object) from GWT (works in IE but not in Firefox)

2011-06-16 Thread pepgrifell
hi, I have a JSP placed in a Frame object. The Frame has the id 'oldWebFrame'. Frame frame_ = new Frame(); frame_.getElement().setId('oldWebFrame'); The JSP has a Javascript function called updatePattern(). I define a JSNI call in GWT: public native void updatePattern() /*-{

Re: update html field in JSP from Java (GWT)

2011-04-04 Thread pepgrifell
; >     TextAreaElement textfield = element.cast(); >     textfield.setValue(newValue); > > } > > Alexandre > > 2011/4/4 pepgrifell > > > > > hi, > > > we are migrating our old website (based on JSP) to GWT. The > > application is big and we

update html field in JSP from Java (GWT)

2011-04-04 Thread pepgrifell
hi, we are migrating our old website (based on JSP) to GWT. The application is big and we cannot do all the changes at one, so in the application there are some pages in GWT and some pages in JSP. I have a JSP with some fields. One of them is a textarea. When I click in it, a GWT window pops up w

solving IE6 (SSL) 12030 bug

2011-01-05 Thread pepgrifell
hi, Our application is running ok with IE7 and 8 but in IE6 we are getting random 12030 errors (Connection: close). In this URl they speak about this problem: http://p2p.wrox.com/book-professional-ajax-isbn-978-0-471-8-6/50786-ie6-status-code-12030-a.html http://www.perkiset.org/forum/ajax/xm

errors when testing GWT app. with IE6

2010-11-24 Thread pepgrifell
hi, we have an application developed with GWT2.0.3 and GXT2.1.3. It works perfectly with IE7 and IE8 but we have tried the application with IE6 and we are getting some errors. Does anyone know which could be the cause of these errors ? *

problem with asynchronism

2010-10-15 Thread pepgrifell
hi, I have a window with some form fields and 2 buttons, "add" and "cancel". One of the fields has a listener associated. The listener does a RPC call to the server to do a validation and it can update the value. The listener is fired when the field loses the focus. The button "add" sends the data

exclude folder/files inside war directory

2010-04-26 Thread pepgrifell
hi, I use Ant to compile my GWT project. I would like to know if it's possible to exclude any folder/files inside war directory or all files/folders inside it are included in root foler of .war file ? Thanks ! -- You received this message because you are subscribed to the Google Groups "Google

Re: cache.html file is not cached with JBoss(Tomcat) and Internet Explorer 6-7

2009-11-24 Thread pepgrifell
> settings already set by cache filter. > > Dmitry > > On Nov 23, 1:04 pm, pepgrifell wrote: > > > > > Hi, > > > the problem is that *.css,*.js and images are cached but the only file > > that is not cached is mycache.htmlfile ... The file is about 3MB

Re: cache.html file is not cached with JBoss(Tomcat) and Internet Explorer 6-7

2009-11-23 Thread pepgrifell
Hi, the problem is that *.css,*.js and images are cached but the only file that is not cached is my cache.html file ... The file is about 3MB and each time the users enter in the application, this file is downladed. The only different thing from cache.html file and the others (css,js,images...) i

cache.html file is not cached with JBoss(Tomcat) and Internet Explorer 6-7

2009-11-20 Thread pepgrifell
Hi, I have 2 filters in my aplication (defined in web.xml): - CacheFilter: to cache static files (*.cache.html,*.css, ...) - GZIPFiler : to gzip cache.html file. GZIPFilter works ok but cache filter , using JBoss and IE6-7 does not caches my cache.html file. I read that Tomcat adds Pragma: no-c

Re: errors with google plugin for eclipse

2009-09-03 Thread pepgrifell
B- INF \web.xml' ** On 2 sep, 16:53, pepgrifell wrote: > hi, > > I moved from GWT1.5.3 to GWT1.6/1.7.

errors with google plugin for eclipse

2009-09-02 Thread pepgrifell
hi, I moved from GWT1.5.3 to GWT1.6/1.7. I installed google plguin in eclipse (Europa) and I did the changes in the directory structure. When I try to compile the app. with the pguing (red suitcase) I get thsi error: Loading module 'GemmaModule' [ERROR] Failure while parsing XML org.xml.sax.

pressing tab key some times goes out of modal window

2009-07-01 Thread pepgrifell
hi there, I have a modal window with some fields. After pressing tab key some times, it goes out of modal window and focus it's placed in url. If I keep pressing tab key, I can go to the main application and do other things (for example, put the focus in another button, press the return key and t

improve GWT compiler time

2009-04-20 Thread pepgrifell
hi there, I'm using GWT 1.5.3 in Windows XP and jdk1.6.0_05. The GWT compiler takes like 7 minutes to compile. If I compile just for ie and firefox, the it takes about 5 min. In my module.gwt.xml file I define the locales: In gwt-user.jar, in UserAgent.gwt.xml there are 5 browsers

Re: errors with inherited own module

2008-11-17 Thread pepgrifell
wrote: > Hi Pepgrifell, > > > > > I have read an old post saying that compiler is not trying to find > > classes from Keys.jar?aaa.bbb.ccc.ddd but finding classes of package > > aaa.bbb.ccc.ddd in all claspath. > > AFAIK that is correct. I think you need to use a uniqu

errors with inherited own module

2008-11-14 Thread pepgrifell
hi, In my gwt.xml file I inherit a module I created with GWT compatible code. Let´s say, the inherited module is: aaa.bbb.ccc aaa.bbb.ccc.Keys.gwt.xml aaa.bbb.ccc.ddd.SomeKeys.java and Keys.gwt.xml: Classes in this JAR (Keys.jar) are used as well from other JAR's in the appli

Can I call GWT app. from Struts app. and vice versa ?

2008-10-23 Thread pepgrifell
hi, we are migrating our web app. to GWT but it's a big app. so we will migrate it by modules. In the Struts app. we have a toolbar with buttons that allows to access different "modules" of the app. We would like to migrate module a module. Let's say I have buttonA (module A), button B (module B)

Re: error calling RPC when using -noserver

2008-10-17 Thread pepgrifell
Solved ! I was copying bad classes to WEB-INF/classes (an old directory (bin) I had). When I copied the classes generated by the GWT Compiler to WEB- INF/classes in my server then the call to the server was ok. On 17 oct, 12:17, pepgrifell <[EMAIL PROTECTED]> wrote: > hi there, >

error calling RPC when using -noserver

2008-10-17 Thread pepgrifell
hi there, I'm using GWT 1.5.2 and I wanted to use OC4J in hosted mode. I'm using Cypal to start GWTShell in Eclipse. I create an EAR with my application (WAR and some JARS). I start OC4J and EAR is deployed. With Cypal plugin, I start GWTSHell and I uncheck "use embedded tomcat server" and ente

Re: error inheriting own module (No source code is available)

2008-10-14 Thread pepgrifell
Solved !!! It was a problem with eclipse and not with GWT. It seems that ant build file it was not refreshing properly (although I was refreshing it...). After trying different things, I closed eclipe and opened it and then it worked... On 14 oct, 14:12, pepgrifell <[EMAIL PROTECTED]>

error inheriting own module (No source code is available)

2008-10-14 Thread pepgrifell
hi, I have created a module with some classes needed in client side and server side but GWT 1.5.2 compatible. When I inherit this module in another module, I get this error: "No source code is available for type Class1" In the other module I add: The structure of the module is: aaa/bbb/MyMod

adjusting panels

2008-09-01 Thread pepgrifell
hi there, Hi have an application with a VerticalPanel. I add a panel with a toolbar (A) and another panel above. This will be the main panel. In the main panel (DockPanel) I add a menu tree in the EAST (B) and a Panel in the CENTER (C). Each option in the menu tree will show a different panel in