Re: GWT App -- Firefox 20 regression?

2013-04-09 Thread salk31
Probably not related but hit a weird issue with FF20 too:
* undefined in a variable that the Java source (compiled to JS) says should 
be initialised.
* works fine in all other browsers.
* works in FF if firebug or the built in debugger turned on...

It was in some Request Factory code... we managed to trim what we were 
sending and the problem went away (not very comforting though).

On Friday, April 5, 2013 9:49:20 PM UTC+1, Geoffrey Wiseman wrote:

 I hit an issue this afternoon where I have an unexplained issue with a 
 select where I can't select any of the options in it, and it seems like the 
 handler isn't even being called (or isn't triggering the debugger in 
 Eclipse, anyway), in either dev mode or after deployment in regular browser 
 usage (including in FF safe mode, which disables all the plugins). This is 
 true in FF20, but not in FF19. 

 It's only one select out of many in our application, so there are clearly 
 complicating circumstances, it's not just select controls don't work in 
 FF20/GWT, but it's odd to me that it works in FF19 and doesn't work in 
 FF20. Since I don't have any idea of the cause yet, I'm not sounding 
 alarms, but I thought I'd put a placeholder in here in case anyone else is 
 experiencing a FF19/FF20 regression and is farther along in their analysis 
 than I am.




-- 
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 google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: GWT App -- Firefox 20 regression?

2013-04-09 Thread Jens


 Probably not related but hit a weird issue with FF20 too:
 * undefined in a variable that the Java source (compiled to JS) says 
 should be initialised.
 * works fine in all other browsers.
 * works in FF if firebug or the built in debugger turned on...


Sounds like a JIT Compiler issue especially because it goes away when a JS 
debugger is active which often (always?) disables JIT compilation in 
browsers. You can try disabling the JIT compiler in about:config.

-- J.

-- 
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 google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: GWT App -- Firefox 20 regression?

2013-04-09 Thread Geoffrey Wiseman

On 2013-04-09, at 8:20 AM, Jens jens.nehlme...@gmail.com wrote:

 
 Probably not related but hit a weird issue with FF20 too:
 * undefined in a variable that the Java source (compiled to JS) says should 
 be initialised.
 * works fine in all other browsers.
 * works in FF if firebug or the built in debugger turned on...
 
 Sounds like a JIT Compiler issue especially because it goes away when a JS 
 debugger is active which often (always?) disables JIT compilation in 
 browsers. You can try disabling the JIT compiler in about:config.

Out of curiosity, I tried this with my issue, and no dice. I disabled all four 
of the flags containing 'jit' in about:config. Refreshing, quitting didn't 
solve the problem, so I did another --safe-mode reset in case it helped clear 
some sort of jit-compiler cache, and went back through the process I use to 
trigger my problem (load up dev mode, go through a sequence in my app) and 
voila, the problem resurfaced as always.

So -- if there is a JIT bug, it either doesn't cause the problem I'm 
experiencing, or turning off those four flags is insufficient to stop it from 
recurring.

  - Geoffrey
--
Geoffrey Wiseman
geoffrey.wise...@gmail.com
http://www.geoffreywiseman.ca

-- 
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 google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: GWT App -- Firefox 20 regression?

2013-04-09 Thread Jens
I think you have to set javascript.options.ion.content to false to disable 
IonMonkey (the name of the JIT Compiler in FF) in FF20.

-- J.

-- 
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 google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: GWT App -- Firefox 20 regression?

2013-04-09 Thread Geoffrey Wiseman

On 2013-04-09, at 10:31 AM, Jens jens.nehlme...@gmail.com wrote:

 I think you have to set javascript.options.ion.content to false to disable 
 IonMonkey (the name of the JIT Compiler in FF) in FF20.

It briefly seemed like this might have had an impact (I failed to reproduce the 
same error state with the Ion Monkey flags set to false), but then I couldn't 
reproduce it after a reset with the ion monkey flags turned on, and discovered 
that /other/ selects are now similarly broken, and that that's true with the 
Ion Monkey flags set to false as well. So at this point, all that I'm learning 
is that reproducing the error state is less reliable than it had seemed before, 
although I still seem quite able to reproduce, but with less consistency as to 
the when and where. ;)

I'm going back to getting work done in FF19; I'll keep an eye out for FF20.0.1 
or more signs that the cause might have been found.

  - Geoffrey
--
Geoffrey Wiseman
geoffrey.wise...@gmail.com
http://www.geoffreywiseman.ca

-- 
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 google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: GWT App -- Firefox 20 regression?

2013-04-08 Thread Geoffrey Wiseman
On Friday, April 5, 2013 4:49:20 PM UTC-4, Geoffrey Wiseman wrote:

 I hit an issue this afternoon where I have an unexplained issue with a 
 select where I can't select any of the options in it, and it seems like the 
 handler isn't even being called (or isn't triggering the debugger in 
 Eclipse, anyway), in either dev mode or after deployment in regular browser 
 usage (including in FF safe mode, which disables all the plugins). This is 
 true in FF20, but not in FF19. 

 It's only one select out of many in our application, so there are clearly 
 complicating circumstances, it's not just select controls don't work in 
 FF20/GWT, but it's odd to me that it works in FF19 and doesn't work in 
 FF20. Since I don't have any idea of the cause yet, I'm not sounding 
 alarms, but I thought I'd put a placeholder in here in case anyone else is 
 experiencing a FF19/FF20 regression and is farther along in their analysis 
 than I am.


I'm having a hard time pinning this down; I can make it go away by 
resetting my firefox profile, but it comes back. I haven't reproduced it on 
another machine, but since I don't have a known sequence of steps that I 
use to trigger the problem, I'd probably have to use another machine as a 
primary machine for a while to see if that helps.

I can trigger this with a simple jsfiddle test:
http://jsfiddle.net/codiform/LgvRb/8/

Unfortunately, this test works fine on a clean install of Firefox, or after 
resetting the profile, so if you're not already experiencing the problem 
that I'm experiencing, you probably won't experience it by visiting that 
page.

I've posted to the Mozilla questions site to see if anyone there is 
encountering it:
https://support.mozilla.org/en-US/questions/955922#answer-425122

Anyway -- I don't have any real answers to what's going on, and I don't 
feel like I'm making a lot of headway on figuring out the cause, so I'm 
probably going to just go back to FF19 for now, but I thought I'd post an 
update in case someone else experiences this.

-- 
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 google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: GWT Debug Firefox (for the n'th time)

2012-05-15 Thread Carlos Silva
On Tue, May 15, 2012 at 6:32 PM, Rori Stumpf r...@simplesmartads.comwrote:

 I made the mistake of upgrading to FireFox 12. I thought Chrome would work
 for GWT debug, but that pig still isn't flying.
 So... where can I download FF 10? I've spent 1/2 hour trying to find it on
 the web, everything I found points back to FF12.


How come chrome doesn't work? I'm using the latest beta (19.X) and it
works.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT Debug Firefox (for the n'th time)

2012-05-15 Thread KevMo
If you're looking for the windows version, here you go.

http://www.oldapps.com/firefox.php



On Tuesday, May 15, 2012 11:32:11 AM UTC-7, Rori Stumpf wrote:

 I made the mistake of upgrading to FireFox 12. I thought Chrome would work 
 for GWT debug, but that pig still isn't flying.
 So... where can I download FF 10? I've spent 1/2 hour trying to find it on 
 the web, everything I found points back to FF12.

 Thanks.


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/S9VuikFgPtkJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT Debug Firefox (for the n'th time)

2012-05-15 Thread Clint Gilbert
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Are you missing the GWT dev mode plugin?  The Linux versions are here:

http://acleung.com/ff12-linux32.xpi
http://acleung.com/ff12-linux64.xpi

You can search through this list's archives for messages from

Alan Leung (acle...@google.com)

with the subject Firefox 12 release.  That thread contains links to
FF12-compatible plugin builds for other OSes.



On 05/15/2012 02:32 PM, Rori Stumpf wrote:
 I made the mistake of upgrading to FireFox 12. I thought Chrome
 would work for GWT debug, but that pig still isn't flying. So...
 where can I download FF 10? I've spent 1/2 hour trying to find it 
 on the web, everything I found points back to FF12.
 
 Thanks.
 
 -- You received this message because you are subscribed to the
 Google Groups Google Web Toolkit group. To view this discussion
 on the web visit 
 https://groups.google.com/d/msg/google-web-toolkit/-/JHwQUu00KqEJ. 
 To post to this group, send email to
 google-web-toolkit@googlegroups.com. To unsubscribe from this
 group, send email to 
 google-web-toolkit+unsubscr...@googlegroups.com. For more options,
 visit this group at 
 http://groups.google.com/group/google-web-toolkit?hl=en.

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk+ypr0ACgkQ5IyIbnMUeTttnwCfVnUqE0mb5EDbajVXD5DufLRT
acsAoJPH67bK4n44zIRAQICwky9+WOxT
=3ZYF
-END PGP SIGNATURE-

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT Debug Firefox (for the n'th time)

2012-05-15 Thread Rori Stumpf

Carlos, I have Chrome 18.0.1025.168 m - it just spins it's wheels  nothing 
happens. I see there is a newer update.
KevMo, thanks for the download.
Clint, this is for Windows 7 64-bit, but thanks anyway.

You know, sometimes it would be good if stuff just worked. I've been using 
GWT for a while now, and debugging is a consistent irritation!


On Tuesday, May 15, 2012 2:49:54 PM UTC-4, Carlos Silva wrote:

 On Tue, May 15, 2012 at 6:32 PM, Rori Stumpf wrote:

 I made the mistake of upgrading to FireFox 12. I thought Chrome would 
 work for GWT debug, but that pig still isn't flying.
 So... where can I download FF 10? I've spent 1/2 hour trying to find it 
 on the web, everything I found points back to FF12.


 How come chrome doesn't work? I'm using the latest beta (19.X) and it 
 works. 


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/RKVaEQuWlIIJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT Debug Firefox (for the n'th time)

2012-05-15 Thread Rori Stumpf

The problem was actually caused by a window.onload conflict from another js 
script... Chrome v19.0.1084.46m debug is working just fine.
(tail between legs)

On Tuesday, May 15, 2012 3:04:40 PM UTC-4, Rori Stumpf wrote:


 Carlos, I have Chrome 18.0.1025.168 m - it just spins it's wheels  
 nothing happens. I see there is a newer update.
 KevMo, thanks for the download.
 Clint, this is for Windows 7 64-bit, but thanks anyway.

 You know, sometimes it would be good if stuff just worked. I've been using 
 GWT for a while now, and debugging is a consistent irritation!


 On Tuesday, May 15, 2012 2:49:54 PM UTC-4, Carlos Silva wrote:

 On Tue, May 15, 2012 at 6:32 PM, Rori Stumpf wrote:

 I made the mistake of upgrading to FireFox 12. I thought Chrome would 
 work for GWT debug, but that pig still isn't flying.
 So... where can I download FF 10? I've spent 1/2 hour trying to find it 
 on the web, everything I found points back to FF12.


 How come chrome doesn't work? I'm using the latest beta (19.X) and it 
 works. 



-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/3yqod1xDdJ0J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT and Firefox

2008-10-18 Thread Taff

Finally sorted this.

I'm ashamed to say it was coder error.  All those hours assuming it
was some kind of Firefox incompatibility when all the time it was an
extra { in one of the element definitions in my css file.

I only twigged it by taking it back to basics.

So basically IE is less fussy when it comes to syntax within your CSS
files.

You live and learn

Andy

On Oct 15, 12:03 am, Taff [EMAIL PROTECTED] wrote:
 yea, I did that and it didnt change anything sadly, now it says it
 using the

 .gwt-StackPanel {

 but it's just blank in firebug.  I suspect it's just not loading my
 css file.

 I'll retire hurt for today and try again tomorrow, just frustrating
 that this is so different between IE and FF

 and tips overnight will be greatfully received. thanks Perelman

 `andy

 On Oct 14, 11:53 pm, Perelman Nathan (Nathan)

 [EMAIL PROTECTED] wrote:
  I'm pretty sure that if you remove or comment out (with !-- comment -- 
  since this is xml) the following line in your .gwt.xml file, it will stop 
  including standard.css:
  inherits name=com.google.gwt.user.theme.standard.Standard/

  I'm not sure that this is really your problem though. Make sure your 
  elements have the class you want applied to them maybe?

  -Original Message-
  From: Google-Web-Toolkit@googlegroups.com [mailto:[EMAIL PROTECTED] On 
  Behalf Of Taff
  Sent: Tuesday, October 14, 2008 18:39
  To: Google Web Toolkit
  Subject: Re: GWT and Firefox

  Very odd, this is what I see in firebug

  link rel=stylesheet href=file:///C:/work/BDFTReportManager/
  WebContent/gwt/standard/standard.css
  /link
  link rel=stylesheet href=file:///C:/work/BDFTReportManager/
  WebContent/BDFTReportManager.css

  I've changed the default

  .gwt-StackPanel {

  }
   with

  .bdftgwt-StackPanel {

  }

  it seems to pick up my new one and then revert back to the default
  standard.css one ... totally baffled :(

  Do I need to exclude the standard.css in some way?  If so how do I do
  that?  Manually?  or is that going to be a post operation for the ANT
  script?

  Sorry for so many questions but i'm a newbies ot GWT

  Thanks

  Andy

  On Oct 14, 11:20 pm, Taff [EMAIL PROTECTED] wrote:
   Top Tip!!  thanks

   OK, so that partially answers the question, at least now I can see
   that my overiden css elements are being ignored for the standard.css
   ones.

   So, question - does this mean that I have to rename mine and then use
   the SetStyle method to get this working?

   .gwt-StackPanel {

   }

   .gwt-StackPanelItem gwt-StackPanelItem-first{
           }

   .gwt-StackPanel .gwt-StackPanelItem {
           }

   On Oct 14, 10:57 pm, Perelman Nathan (Nathan)

   [EMAIL PROTECTED] wrote:
Try using Firebug (it's a Firefox plugin) to find out what styles (if 
any) are being applied and where they come from.

-Original Message-
From: Google-Web-Toolkit@googlegroups.com [mailto:[EMAIL PROTECTED] On 
Behalf Of Taff
Sent: Tuesday, October 14, 2008 17:47
To: Google Web Toolkit
Subject: Re: GWT and Firefox

It's very frustrating.

I suspect a number of things maybe causing the problem

a) My app is not picking up the css file from the Module xml file.
b) It could be because my app has mixed Upper and Lower case chars in
it BDFTReportManager
c) Something to do with a missing inherits flag in the module file,
mine is a very simple proof of concept app at this stage and has no
RPC stuff in it, so I can't see why
d) I've tried dynamically loading the css file in the HTML file with a
standard link flag
e) I'm using a StackedPanel and TabPanel and these are the 2 where the
standard css settigns are not working and they just default back to
the default set.
f) I've tried to ensure that i am using the SetStyle method to force
the code to use the right css setting ... no luck.

I am just totally baffled, and I'm pretty sure it'll be something
really simple we just need a GWT expert to shine the light on it

On Oct 14, 8:19 pm, grasshopper [EMAIL PROTECTED] wrote:
 I am having exactly the same problem.

 GWT 1.5, IF 7, FF 3

 On Oct 14, 11:26 am, Taff [EMAIL PROTECTED] wrote:

  Hi

  I'm sure this has been raised before, however I'm new to the product
  and can't find any threads on this

  MY new app works fine in IE and not in Firefox.  For some reason the
  app does not pick up the app stylesheet in firefox like it does in 
  IE.

  I've tried every which way, but to no avail.  Is there something I'm
  missing.

  Also I code on my mac at home and PC in the office and none of the
  rendering seems to be that portable.

  Any pointers would be much appreciated

  Thanks

  Andy
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google

Re: GWT and Firefox

2008-10-14 Thread grasshopper

I am having exactly the same problem.

GWT 1.5, IF 7, FF 3

On Oct 14, 11:26 am, Taff [EMAIL PROTECTED] wrote:
 Hi

 I'm sure this has been raised before, however I'm new to the product
 and can't find any threads on this

 MY new app works fine in IE and not in Firefox.  For some reason the
 app does not pick up the app stylesheet in firefox like it does in IE.

 I've tried every which way, but to no avail.  Is there something I'm
 missing.

 Also I code on my mac at home and PC in the office and none of the
 rendering seems to be that portable.

 Any pointers would be much appreciated

 Thanks

 Andy
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



RE: GWT and Firefox

2008-10-14 Thread Perelman Nathan (Nathan)

Try using Firebug (it's a Firefox plugin) to find out what styles (if any) are 
being applied and where they come from.

-Original Message-
From: Google-Web-Toolkit@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf 
Of Taff
Sent: Tuesday, October 14, 2008 17:47
To: Google Web Toolkit
Subject: Re: GWT and Firefox


It's very frustrating.

I suspect a number of things maybe causing the problem

a) My app is not picking up the css file from the Module xml file.
b) It could be because my app has mixed Upper and Lower case chars in
it BDFTReportManager
c) Something to do with a missing inherits flag in the module file,
mine is a very simple proof of concept app at this stage and has no
RPC stuff in it, so I can't see why
d) I've tried dynamically loading the css file in the HTML file with a
standard link flag
e) I'm using a StackedPanel and TabPanel and these are the 2 where the
standard css settigns are not working and they just default back to
the default set.
f) I've tried to ensure that i am using the SetStyle method to force
the code to use the right css setting ... no luck.

I am just totally baffled, and I'm pretty sure it'll be something
really simple we just need a GWT expert to shine the light on it




On Oct 14, 8:19 pm, grasshopper [EMAIL PROTECTED] wrote:
 I am having exactly the same problem.

 GWT 1.5, IF 7, FF 3

 On Oct 14, 11:26 am, Taff [EMAIL PROTECTED] wrote:

  Hi

  I'm sure this has been raised before, however I'm new to the product
  and can't find any threads on this

  MY new app works fine in IE and not in Firefox.  For some reason the
  app does not pick up the app stylesheet in firefox like it does in IE.

  I've tried every which way, but to no avail.  Is there something I'm
  missing.

  Also I code on my mac at home and PC in the office and none of the
  rendering seems to be that portable.

  Any pointers would be much appreciated

  Thanks

  Andy


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: GWT and Firefox

2008-10-14 Thread Taff

Top Tip!!  thanks

OK, so that partially answers the question, at least now I can see
that my overiden css elements are being ignored for the standard.css
ones.

So, question - does this mean that I have to rename mine and then use
the SetStyle method to get this working?

.gwt-StackPanel {

}
.gwt-StackPanelItem gwt-StackPanelItem-first{
}

.gwt-StackPanel .gwt-StackPanelItem {
}

On Oct 14, 10:57 pm, Perelman Nathan (Nathan)
[EMAIL PROTECTED] wrote:
 Try using Firebug (it's a Firefox plugin) to find out what styles (if any) 
 are being applied and where they come from.

 -Original Message-
 From: Google-Web-Toolkit@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf 
 Of Taff
 Sent: Tuesday, October 14, 2008 17:47
 To: Google Web Toolkit
 Subject: Re: GWT and Firefox

 It's very frustrating.

 I suspect a number of things maybe causing the problem

 a) My app is not picking up the css file from the Module xml file.
 b) It could be because my app has mixed Upper and Lower case chars in
 it BDFTReportManager
 c) Something to do with a missing inherits flag in the module file,
 mine is a very simple proof of concept app at this stage and has no
 RPC stuff in it, so I can't see why
 d) I've tried dynamically loading the css file in the HTML file with a
 standard link flag
 e) I'm using a StackedPanel and TabPanel and these are the 2 where the
 standard css settigns are not working and they just default back to
 the default set.
 f) I've tried to ensure that i am using the SetStyle method to force
 the code to use the right css setting ... no luck.

 I am just totally baffled, and I'm pretty sure it'll be something
 really simple we just need a GWT expert to shine the light on it

 On Oct 14, 8:19 pm, grasshopper [EMAIL PROTECTED] wrote:
  I am having exactly the same problem.

  GWT 1.5, IF 7, FF 3

  On Oct 14, 11:26 am, Taff [EMAIL PROTECTED] wrote:

   Hi

   I'm sure this has been raised before, however I'm new to the product
   and can't find any threads on this

   MY new app works fine in IE and not in Firefox.  For some reason the
   app does not pick up the app stylesheet in firefox like it does in IE.

   I've tried every which way, but to no avail.  Is there something I'm
   missing.

   Also I code on my mac at home and PC in the office and none of the
   rendering seems to be that portable.

   Any pointers would be much appreciated

   Thanks

   Andy
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



RE: GWT and Firefox

2008-10-14 Thread Perelman Nathan (Nathan)

I'm pretty sure that if you remove or comment out (with !-- comment -- since 
this is xml) the following line in your .gwt.xml file, it will stop including 
standard.css:
inherits name=com.google.gwt.user.theme.standard.Standard/

I'm not sure that this is really your problem though. Make sure your elements 
have the class you want applied to them maybe?

-Original Message-
From: Google-Web-Toolkit@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf 
Of Taff
Sent: Tuesday, October 14, 2008 18:39
To: Google Web Toolkit
Subject: Re: GWT and Firefox


Very odd, this is what I see in firebug

link rel=stylesheet href=file:///C:/work/BDFTReportManager/
WebContent/gwt/standard/standard.css
/link
link rel=stylesheet href=file:///C:/work/BDFTReportManager/
WebContent/BDFTReportManager.css

I've changed the default

.gwt-StackPanel {

}
 with

.bdftgwt-StackPanel {

}

it seems to pick up my new one and then revert back to the default
standard.css one ... totally baffled :(

Do I need to exclude the standard.css in some way?  If so how do I do
that?  Manually?  or is that going to be a post operation for the ANT
script?

Sorry for so many questions but i'm a newbies ot GWT

Thanks

Andy




On Oct 14, 11:20 pm, Taff [EMAIL PROTECTED] wrote:
 Top Tip!!  thanks

 OK, so that partially answers the question, at least now I can see
 that my overiden css elements are being ignored for the standard.css
 ones.

 So, question - does this mean that I have to rename mine and then use
 the SetStyle method to get this working?

 .gwt-StackPanel {

 }

 .gwt-StackPanelItem gwt-StackPanelItem-first{
         }

 .gwt-StackPanel .gwt-StackPanelItem {
         }

 On Oct 14, 10:57 pm, Perelman Nathan (Nathan)

 [EMAIL PROTECTED] wrote:
  Try using Firebug (it's a Firefox plugin) to find out what styles (if any) 
  are being applied and where they come from.

  -Original Message-
  From: Google-Web-Toolkit@googlegroups.com [mailto:[EMAIL PROTECTED] On 
  Behalf Of Taff
  Sent: Tuesday, October 14, 2008 17:47
  To: Google Web Toolkit
  Subject: Re: GWT and Firefox

  It's very frustrating.

  I suspect a number of things maybe causing the problem

  a) My app is not picking up the css file from the Module xml file.
  b) It could be because my app has mixed Upper and Lower case chars in
  it BDFTReportManager
  c) Something to do with a missing inherits flag in the module file,
  mine is a very simple proof of concept app at this stage and has no
  RPC stuff in it, so I can't see why
  d) I've tried dynamically loading the css file in the HTML file with a
  standard link flag
  e) I'm using a StackedPanel and TabPanel and these are the 2 where the
  standard css settigns are not working and they just default back to
  the default set.
  f) I've tried to ensure that i am using the SetStyle method to force
  the code to use the right css setting ... no luck.

  I am just totally baffled, and I'm pretty sure it'll be something
  really simple we just need a GWT expert to shine the light on it

  On Oct 14, 8:19 pm, grasshopper [EMAIL PROTECTED] wrote:
   I am having exactly the same problem.

   GWT 1.5, IF 7, FF 3

   On Oct 14, 11:26 am, Taff [EMAIL PROTECTED] wrote:

Hi

I'm sure this has been raised before, however I'm new to the product
and can't find any threads on this

MY new app works fine in IE and not in Firefox.  For some reason the
app does not pick up the app stylesheet in firefox like it does in IE.

I've tried every which way, but to no avail.  Is there something I'm
missing.

Also I code on my mac at home and PC in the office and none of the
rendering seems to be that portable.

Any pointers would be much appreciated

Thanks

Andy


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: GWT and Firefox

2008-10-14 Thread Taff

yea, I did that and it didnt change anything sadly, now it says it
using the

.gwt-StackPanel {

but it's just blank in firebug.  I suspect it's just not loading my
css file.

I'll retire hurt for today and try again tomorrow, just frustrating
that this is so different between IE and FF

and tips overnight will be greatfully received. thanks Perelman

`andy


On Oct 14, 11:53 pm, Perelman Nathan (Nathan)
[EMAIL PROTECTED] wrote:
 I'm pretty sure that if you remove or comment out (with !-- comment -- 
 since this is xml) the following line in your .gwt.xml file, it will stop 
 including standard.css:
 inherits name=com.google.gwt.user.theme.standard.Standard/

 I'm not sure that this is really your problem though. Make sure your elements 
 have the class you want applied to them maybe?

 -Original Message-
 From: Google-Web-Toolkit@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf 
 Of Taff
 Sent: Tuesday, October 14, 2008 18:39
 To: Google Web Toolkit
 Subject: Re: GWT and Firefox

 Very odd, this is what I see in firebug

 link rel=stylesheet href=file:///C:/work/BDFTReportManager/
 WebContent/gwt/standard/standard.css
 /link
 link rel=stylesheet href=file:///C:/work/BDFTReportManager/
 WebContent/BDFTReportManager.css

 I've changed the default

 .gwt-StackPanel {

 }
  with

 .bdftgwt-StackPanel {

 }

 it seems to pick up my new one and then revert back to the default
 standard.css one ... totally baffled :(

 Do I need to exclude the standard.css in some way?  If so how do I do
 that?  Manually?  or is that going to be a post operation for the ANT
 script?

 Sorry for so many questions but i'm a newbies ot GWT

 Thanks

 Andy

 On Oct 14, 11:20 pm, Taff [EMAIL PROTECTED] wrote:
  Top Tip!!  thanks

  OK, so that partially answers the question, at least now I can see
  that my overiden css elements are being ignored for the standard.css
  ones.

  So, question - does this mean that I have to rename mine and then use
  the SetStyle method to get this working?

  .gwt-StackPanel {

  }

  .gwt-StackPanelItem gwt-StackPanelItem-first{
          }

  .gwt-StackPanel .gwt-StackPanelItem {
          }

  On Oct 14, 10:57 pm, Perelman Nathan (Nathan)

  [EMAIL PROTECTED] wrote:
   Try using Firebug (it's a Firefox plugin) to find out what styles (if 
   any) are being applied and where they come from.

   -Original Message-
   From: Google-Web-Toolkit@googlegroups.com [mailto:[EMAIL PROTECTED] On 
   Behalf Of Taff
   Sent: Tuesday, October 14, 2008 17:47
   To: Google Web Toolkit
   Subject: Re: GWT and Firefox

   It's very frustrating.

   I suspect a number of things maybe causing the problem

   a) My app is not picking up the css file from the Module xml file.
   b) It could be because my app has mixed Upper and Lower case chars in
   it BDFTReportManager
   c) Something to do with a missing inherits flag in the module file,
   mine is a very simple proof of concept app at this stage and has no
   RPC stuff in it, so I can't see why
   d) I've tried dynamically loading the css file in the HTML file with a
   standard link flag
   e) I'm using a StackedPanel and TabPanel and these are the 2 where the
   standard css settigns are not working and they just default back to
   the default set.
   f) I've tried to ensure that i am using the SetStyle method to force
   the code to use the right css setting ... no luck.

   I am just totally baffled, and I'm pretty sure it'll be something
   really simple we just need a GWT expert to shine the light on it

   On Oct 14, 8:19 pm, grasshopper [EMAIL PROTECTED] wrote:
I am having exactly the same problem.

GWT 1.5, IF 7, FF 3

On Oct 14, 11:26 am, Taff [EMAIL PROTECTED] wrote:

 Hi

 I'm sure this has been raised before, however I'm new to the product
 and can't find any threads on this

 MY new app works fine in IE and not in Firefox.  For some reason the
 app does not pick up the app stylesheet in firefox like it does in IE.

 I've tried every which way, but to no avail.  Is there something I'm
 missing.

 Also I code on my mac at home and PC in the office and none of the
 rendering seems to be that portable.

 Any pointers would be much appreciated

 Thanks

 Andy
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---