Float css atribute

2010-01-09 Thread ben fenster
DOM.setStyleAttribute(m_userImgPnl.getElement(), "float", "left"); using this line i am tring to set a simple panel style to float lest but when i run i see using firebug that the change didnt happen anyone knows why? -- You received this message because you are subscribed to the Google Groups "

Re: String.equals not working in IE

2010-01-09 Thread TM
I had implemented something similar to your first suggestion, I just thought I had missed something obvious. The second suggestion is interesting. I'll be mulling over both, thanks! On Jan 9, 7:39 am, Thomas Broyer wrote: > On Jan 7, 1:46 am, TM wrote: > > > > > > > Here is the scenario: > > > I

How to configure my web.xml

2010-01-09 Thread Dave
I have had some success in setting up a single service which is called through GWT-RPC. Now I have set up 2 services and I get this error: This application is out of date, please click the refresh button on your browser. ( Blocked attempt to access interface 'com.server.ServiceImpl1', which is not

Re: GWT2.0 and GWTx propertychangesupport

2010-01-09 Thread Carl
Glad to hear that this is also working for you, as that increases my confidence in the correctness of the fix. Regarding GWTx being included in GWT, well, I don't see a problem with the general model of satellite projects addressing specific needs, and then GWT grabbing and incorporating what turn

Re: Cannot debug GWT 2.0 app embedded within external iframe

2010-01-09 Thread Stevko
I've managed to get my application to work in an external iframe by editing the hosted.html file and changing line 226 from var topWin = window.top; to var topWin = window.self; This is the context... gwtOnLoad = function(errFn, modName, modBase){ $moduleName = modName; $moduleBase = modBase;

Re: Development mode - refresh is not enough to see my changes!

2010-01-09 Thread Sorinel C
Depends what you change, so, if you play with the HTML or CSS you may have caching of the browser that is playing tricks on you ... so that's why you have to restart dev-mode ... but if you change java code, most of the time, you don't even need refresh, except for the static functions, that needs

Re: StringBuffer problems in GWT

2010-01-09 Thread Sorinel C
Why not using StringBuilder (faster, not thread-safe) instead of StringBuffer (slower, thread-safe) ? Cheers! -- 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-tool...@googlegroups.com. To unsu

Re: GWT 2.0 Upgrade Problem

2010-01-09 Thread Sorinel C
Hi all, There small tricks related with the environment, which aren't documented, in the GWT tutorial. Here you can find what helped me to solve the migration issues: http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html Cheers! -- You received this message because

Re: Mac, GWT Hosted Mode does not work after switching to gwt 2.0 and back to 1.7.1

2010-01-09 Thread Micha Roon
waouwww thank you, that was easy. I would never have found it on me own though. so many thanks for the easy solution. I am on a mac (Mac OS X 10.5.8) and was just fighting with the same issue. On Dec 14 2009, 8:52 pm, ciyer wrote: > I spent a few hours chasing down the "Invalid memory access of

Re: javascript error (invalid Argument)

2010-01-09 Thread John V Denley
If I had any clue how to figure out which of the 6000 odd lines of code were causing the error! On Jan 8, 4:39 pm, Chris Ramsdale wrote: > Hey John, > > Would you be able to narrow it down to a smaller repro case? > > - Chris > > On Thu, Jan 7, 2010 at 5:29 PM, John V Denley > wrote: > > > > > I

Re: String.equals not working in IE

2010-01-09 Thread Thomas Broyer
On Jan 7, 1:46 am, TM wrote: > Here is the scenario: > > I have a TextArea on my page that displays a couple of paragraphs > pulled from the database for editing.  When the form is submitted the > TextArea contents are checked to see if  any changes have been made. > > Here is the Java code to t

GWT Dialog appears under YouTube video in Linux

2010-01-09 Thread amich...@gmail.com
Hello, Is there a way to fix this so that the dialog appears over the embedded YouTube video on all operating systems? It's fine on Mac OS. Amir -- 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: better place for image

2010-01-09 Thread DaveC
Like wise there wasn't a lot I needed to adjust when I moved from 1.7 to 2.0... Cheers, Dave On Jan 8, 5:35 pm, Thad wrote: > If it's any help, I found moving from 1.7 to 2.0 a **lot** less effort > than moving from 1.4 to 1.5.  In fact, it was trivial by comparison. > > On Jan 8, 11:46 am, ale

Re: Injected CSS rules are evaluated after onModuleLoad/Widget#onLoad

2010-01-09 Thread DaveC
Cool, nope I've not noticed any performance issues - I'm in the middle of writing an app (for my employer) that will be shipped as part of a enterprise b2b product at the moment there is about 8 separate stylesheets that are being injected - will probably be at least 10 when finished so any perform

Re: GWT2.0 and GWTx propertychangesupport

2010-01-09 Thread francescoNemesi
Hi Carl, thank you very much for your reply. As a matter of fact I had already seen and applied the patch (i.e. new Pattern class) in my code and now everything seems to be well. I meant to follow up on my post with the solution, but never got the time to do it. I wish GWT implemented natively al

Re: Building Composite Web Application using GWT...

2010-01-09 Thread sha...@gmail.com
hi rjcarr, Thanks for the reply. I am bit new in GWT , not very clear how GWT applicaitons are modled. I have this Composite web applicaiton built on Asp.NET MVC. the framework allows me to build Independence modules. and just copy and paste (dlls in one directory , script and stuffs in o

Re: Loading/parsing time for CssResource

2010-01-09 Thread Sebastian Beigel
Please ignore this post, it's a double post as I didn't realize that new mails are moderated. I wrote a newer (and more concise :) post discussing this subject (search for "Injected CSS rules are evaluated after onModuleLoad/Widget#onLoad") My apologies, Sebastian -- You received this message bec

Re: Injected CSS rules are evaluated after onModuleLoad/Widget#onLoad

2010-01-09 Thread Sebastian Beigel
Replacing globalResources.fooCss().ensureInjected(); with StyleInjector.inject(globalResources.fooCss().getText(), true); solves the problem as well! Thanks Dave. In the meanwhile, I wrapped my onModuleLoad code in a DeferredCommand() (mainly for an UncaughtExceptionHandler) and removed the De

Re: RPC error with jboss

2010-01-09 Thread Lucas Vargas Freitas Ventura
Here are my web.xml: DynaTable.html calendar com.google.gwt.sample.dynatable.server.SchoolCalendarServiceImpl calendar /dynatable/calendar What is missing? Thanks again On Sat, Jan 9, 2010 at 2:02 AM, UJ wrote: > Hello, > > Its not able to lo

Re: GWT2.0 and GWTx propertychangesupport

2010-01-09 Thread Carl
Hi, Francesco, I have just upgraded to GWT 2.0 and encountered the same problem as you did. I believe that I have now surmounted this problem, thanks largely to a developer who posted a fix to the GWTx issues list, issue 18, which is referenced from the main GWTx page (with a line through it indi

Re: "gwt-servlet.jar" being deleted at each Eclipse startup after upgrading to gwt 2.0

2010-01-09 Thread Jeff Schnitzer
Ignore this solution. The problem is simply intermittent and didn't happen a few times. It nevertheless persists. Jeff On Fri, Jan 1, 2010 at 1:58 PM, Jeff Schnitzer wrote: > Amazingly, you're right.  The solution is to ignore the message, > *don't* revert your files back, and restart Eclipse

Re: GWT 2.0 Upgrade Problem

2010-01-09 Thread m.mil...@newelements.de
hello everyone, i have the same problem after upgrading. i tried deleting the, compiled js files and recompiled it. now the js cache file exists but the reference to the file is wrong. the application tries to load it from the root folder where the Project.html is. Not from the subfolder of the GET

Re: How to redefine standard.css ?

2010-01-09 Thread mariyan nenchev
remove the standard css declaration fom your .gwt.xml On Fri, Jan 8, 2010 at 9:26 AM, Ista Pouss wrote: > Hi, > > I have a little application (a diaporama) in GWT. I should want > distribute this application. > > But GWT put "standard.css" at the end of css declarations, so it > remove all speci

Re: Webbrowser game made with GWT 2.0: lacesfirst.com

2010-01-09 Thread mariyan nenchev
could you setup some example pls On Sat, Jan 9, 2010 at 2:42 AM, Fushion wrote: > Ohh, I almost forgot... your SessionBean has to implement your GWT > RemoteService interface (not the Async one!) ofcourse.. > > On 8 jan, 19:19, Fushion wrote: > > Assuming a setup with Eclipse, I did the followin

Re: How to redefine standard.css ?

2010-01-09 Thread Ista Pouss
2010/1/9 rjcarr : > I'm not exactly sure what you're asking, but I'm not sure you can edit > standard.css. > I'm sorry, my english is not good. Here is an exemple. In my HTML, at the end of , there is : You see the call to GWT appli, then the links to my css. But when I look at