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 *meta http-equiv=X-UA-Compatible

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: call javascript function in JSP (placed in Frame object) from GWT (works in IE but not in Firefox)

2011-06-16 Thread pepgrifell
{ var iframe = $doc.frames ? $doc.frames['oldWebFrame'] : $doc.getElementById('oldWebFrame'); var ifWin = iframe.contentWindow || iframe; ifWin.updateRotatePattern(); } }-*/; On Jun 16, 12:05 pm, pepgrifell pepgrif...@gmail.com wrote: hi, I have

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

2011-06-16 Thread pepgrifell
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 pepgrif...@gmail.com wrote: hi, after trying different things, I found one that is working : public native void

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

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

2011-04-04 Thread pepgrifell
(newValue); } Alexandre 2011/4/4 pepgrifell pepgrif...@gmail.com 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

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

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 ?

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
by cache filter. Dmitry On Nov 23, 1:04 pm, pepgrifell pepgrif...@gmail.com 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 and each time the users enter in the application, this file

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...)

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:

Re: errors with google plugin for eclipse

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

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

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

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: extend-property name=locale values=it / extend-property name=locale

Re: errors with inherited own module

2008-11-17 Thread pepgrifell
We are moving an existing project to GWT and the project has a lot of sub-projects (JAR's) that use these classes. If I change the package to be unique, I will have to change lots of classes that were using classes in Keys.jar !!! On 14 nov, 14:13, gregor [EMAIL PROTECTED] wrote: Hi Pepgrifell

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: module source path=ddd include name=**/*.java/ /source /module Classes in this

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)

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 enter

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, I'm using GWT

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: inherits name=aaa.bbb.MyModule / The structure

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] wrote: hi