Re: Referencing deprecated class warning stack

2010-01-08 Thread khaled.tl...@gmail.com
Hi, I've got the same type of exception with same environment. Is there something that we missed? Regards. KT On Jan 2, 7:54 pm, leslie web...@comcast.net wrote: Eclipse 3.5 Galileo Java EE Cocoa Java 1.5.0_13 Mac OS X 10.5.7 GWT 2.0 Hello, I'm seeing a series of warning messages in my

help in creating menu using popuppanel or dialogbox

2010-01-08 Thread Abdullah Shaikh
Hi, I want to create menus like on this site http://www99.shopping.com/, I have used Hyperlink for menu, and added a mouseover handler, on mouseover I display a PopupPanel or should I use DialogBox ?, but now the issue when should I hide the PopupPanel, also there is no mousehandlers for

Re: request builder

2010-01-08 Thread ben fenster
?? On Jan 7, 7:30 pm, ben fenster fenster@gmail.com wrote: thats what  i am doing and it works great in hosted but not in compile mode do you have an idea way ?? On Jan 7, 3:55 pm, Jamie jamiesharbor-sou...@yahoo.com wrote: You should then probably install something like TamperData

better place for image

2010-01-08 Thread ale
Hi, I can not decide where put some image in a application, image like logo, icon for button, ecc. Is better put it in css or use the ImageBundle and AbstractImagePrototype? I prefer the solution that make the load of the page faster. Thanks! Bye Alessandro -- You received this message

Re: help in creating menu using popuppanel or dialogbox

2010-01-08 Thread Olivier
Hi, Why don't you use the menu bar. http://gwt.google.com/samples/Showcase/Showcase.html#CwMenuBar http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/user/client/ui/MenuBar.html Oli On 8 Jan 2010, at 09:51, Abdullah Shaikh wrote: Hi, I want to create menus like on

Re: addWindowClosingHandler firing when frame loads in IE

2010-01-08 Thread Thomas Broyer
On Jan 8, 8:54 am, jd jdpatter...@gmail.com wrote: I have found that I could avoid the problem by using Button's (or probably other widgets) instead of Anchor widgets for my internal navigation.  Perhaps it is due to the default href javascript:; ? Maybe IE7/8 does not recognise this as an

Re: Compilation error

2010-01-08 Thread Raman
Looks like I have finally solved the problem. The case was something like this. I am using ExtGWT which has a class TreePanel with an inner class TreeNode, which looks like below: public class TreePanelM extends ModelData { - class TreeNode {

Re: help in creating menu using popuppanel or dialogbox

2010-01-08 Thread Abdullah Shaikh
Sorry I should have given some other example site, but I couldn't find any. Actually I want the menu drop down to be in 2 columns or may be 3 ? I will try to find an example online. - Abdullah On Fri, Jan 8, 2010 at 2:43 PM, Olivier oliv...@digiworks.es wrote: Hi, Why don't you use the

Re: Overriding DecoratedTabPanel CSS does not seem to change the look of the Tabs

2010-01-08 Thread RPB
Thanks for the tip, but I'm not quite ready to switch to standards mode (required for TabLayoutPanel) as it will involve a rework of some of the other elements on my website. I found that I am able to apply custom stylings if I first specifically remove the defaults :

Re: Problem: certain types of J2EE authentication with GWT 2.0 and Eclipse 3.5 plugin no longer work

2010-01-08 Thread lemaiol
Hi Ian, It seems that the Jetty version could have changed and also its API. Try with this little change in the syntax of the configuration (we guessed it looking at the jetty classes API and it worked for us): cheers, Alberto ?xml version=1.0? !DOCTYPE Configure PUBLIC -//Mort Bay

Re: help in creating menu using popuppanel or dialogbox

2010-01-08 Thread Abdullah Shaikh
Finally got this link, http://www.salesforce.com/demos/, when you go to Products or Services menu, there is a popup displayed with 2 columns. I wanted the same way. Any idea on how to achieve this ? - Abdullah On Fri, Jan 8, 2010 at 3:01 PM, Abdullah Shaikh abdullah.shaik...@gmail.com wrote:

Re: help in creating menu using popuppanel or dialogbox

2010-01-08 Thread mariyan nenchev
Well it's actually very simple. Create one TabPanel and on mouse over event (over the tab) display menu using absolute positioning starting right under the selected tabbar. On Fri, Jan 8, 2010 at 11:55 AM, Abdullah Shaikh abdullah.shaik...@gmail.com wrote: Finally got this link,

Re: request builder

2010-01-08 Thread Paul Robinson
Please don't take this the wrong way. I really am trying to help... If you read this: http://catb.org/~esr/faqs/smart-questions.html then you may understand why you've had a poor response and perhaps get some ideas about how to elicit a better response. For example, Jamie tried to help, but it's

Re: Any thing in GWT for Gridlayout???

2010-01-08 Thread DaveS
Seconded -- FlexTable is your friend here, and can cope with odd widgets or labels that are too long by using FlexTable.getFlexCellFormatter() to get the cell formatter, and then set 'colspan' (or rowspan) for some cells if necessary. It can produce great results, and basically maps to an HTML

Re: Problem: certain types of J2EE authentication with GWT 2.0 and Eclipse 3.5 plugin no longer work

2010-01-08 Thread Ian.G
Hi Alberto, thanks for taking the time to reply. I've changed the wireup of the realm in jetty-web.xml so it more closely matches what you have (i.e instead of doing Call name=setUserRealm we now do a Set name=UserRealm). So our jetty-web.xml now looks like this: ?xml version=1.0? !DOCTYPE

Re: help in creating menu using popuppanel or dialogbox

2010-01-08 Thread Abdullah Shaikh
And when should I hide the menu ? also should I use PopupPanel or DialogBox for menu ? I will try out with TabPanel, will update my findings. Thanks - Abdullah On Fri, Jan 8, 2010 at 4:10 PM, mariyan nenchev nenchev.mari...@gmail.comwrote: Well it's actually very simple. Create one

Re: addWindowClosingHandler firing when frame loads in IE

2010-01-08 Thread John Patterson
On 8 Jan 2010, at 16:22, Thomas Broyer wrote: Use Hyperlink or InlineHyperlink widgets for internal navigation (unless you also want ClickHandlers, in which case Anchor is fine, calling History.newItem() in a ClickHandler, but do not forget to ClickEvent#preventDefault() // this is more or less

Re: Validating user input

2010-01-08 Thread Lukasz
Hi, In my current project I'm using the gwt validation library (http:// sourceforge.net/projects/gwt-vl/) which supports both client- and server-side validation and integrates itself nicly with e.g. hibernate- validation ... Maybe it's something you're looking for. Kind regards, Lukasz On 7

Re: help in creating menu using popuppanel or dialogbox

2010-01-08 Thread mariyan nenchev
Well, when the mouse is not over the tab bar. On Fri, Jan 8, 2010 at 1:09 PM, Abdullah Shaikh abdullah.shaik...@gmail.com wrote: And when should I hide the menu ? also should I use PopupPanel or DialogBox for menu ? I will try out with TabPanel, will update my findings. Thanks -

Re: Compilation error

2010-01-08 Thread dangle
I rebuilt the toolkit from source and narrowed down the issue a bit myself, definitely seems to have something to do with inner classes being defined inside generic classes. Unfortunately my codebase is pretty big and we do this in multiple spots, so I'm still trying to get around it. Will see

ClientBundle and Image Resource Location

2010-01-08 Thread Sammy
Hello, I have a maven gwt project, and I'm using ClientBundle to package my image resources within the project. I would like to place the images in /src/main/resources as should be done in maven instead of src/main/java/com/mycompany/myproject/client as gwt wants. Is there any way I can achieve

Re: GWT 2.0 Maven repo

2010-01-08 Thread Sammy
Well, now that they ARE on the maven central repository, I cannot download javadocs or source. Is there a reason for this? Thanks, Sammy On Dec 10 2009, 1:00 am, slind...@gmail.com slind...@gmail.com wrote: Hi, I would like to upgrade my current applications to GWT 2.0, but since they are

Re: ClientBundle and Image Resource Location

2010-01-08 Thread mariyan nenchev
Did you tried src/main/resources/com/mycompany/myproject/client On Fri, Jan 8, 2010 at 2:07 PM, Sammy pico...@gmail.com wrote: Hello, I have a maven gwt project, and I'm using ClientBundle to package my image resources within the project. I would like to place the images in

Re: help in creating menu using popuppanel or dialogbox

2010-01-08 Thread Abdullah Shaikh
Hey this where the issue is, when the mouse is not over the tab bar, that means it can be in 2 places either 1) on the menu itself or 2) not on the menu. if we hide the menu if its not over tab bar, its ok for the 2 point, but when its on the menu itself, it will close the menu bcoz the mouse is

Re: Compilation error

2010-01-08 Thread dangle
As a temporary workaround since I've already burned a whole day on this one, I just refactored several inner classes to the top level. It just compiled. I think my case may have actually done something similar, only where (to use Raman's example) it actually defined TreePanel.TreeNode as part of

Re: Referencing deprecated class warning stack

2010-01-08 Thread Luis Fernando Planella Gonzalez
I've got the same type of exception with same environment. Is there something that we missed? Yes, you missed the thread which is already discussing it ;) http://groups.google.com/group/google-web-toolkit/browse_thread/thread/cbf566637f03496a/a676bf46bb463f94?#a676bf46bb463f94 -- You received

Re: help in creating menu using popuppanel or dialogbox

2010-01-08 Thread philippe
If you want a menu which is very personnalized you should uses div elements with some handlers. You must play with dom as html / CSS / Javascript but you can do in gwt / CSS only. You can try with this begin: code public class MyDivPanel extends FlowPanel implements MouseDownHandler,

GWT dev mode with pre-installed tomcat

2010-01-08 Thread Nuno
Hello everybody, I'm implementing gwt on a existing project. and i need to use dev mode with the already installed tomcat. Can anybody help me configure this? I'm using gwt 2.0 Att Bruno Bilescky -- Wants to learn Javascript? Read my blog / Quer aprender a programar? leia meu blog

Re: how to use CssResource.obfuscationPrefix to have semi-obfuscated css class name

2010-01-08 Thread emerix
thanks a lot for your replies !! that's exactly what I needed :) On Jan 7, 6:42 am, Brendan Kenny bcke...@gmail.com wrote: Yeah, I ran into the same problem. If the issue is just exposing the style names during development (and you're not looking for this particular solution for an additional

Re: help in creating menu using popuppanel or dialogbox

2010-01-08 Thread Abdullah Shaikh
Thanks Philippe, I will try this out. - Abdullah On Fri, Jan 8, 2010 at 6:47 PM, philippe vonck...@yahoo.fr wrote: If you want a menu which is very personnalized you should uses div elements with some handlers. You must play with dom as html / CSS / Javascript but you can do in gwt / CSS

Re: Any thing in GWT for Gridlayout???

2010-01-08 Thread Alejandro D. Garin
Hi, Have a look at gwt-mosaic FormLayout: http://69.20.122.77/gwt-mosaic-current/Showcase.html#CwQuickStartExample maybe this can help you. Alejandro. On Fri, Jan 8, 2010 at 2:39 AM, Abhay Singh abhay.asi...@gmail.com wrote: Hi Do we have any thing in GWT to implement GridLayout I

Re: request builder

2010-01-08 Thread ben fenster
the thing is there wasnt anything to tell because i used a reequest builder wich sent requests ok in hosted but nor in compile the problem was with the url the problem is with the reequeest builder class that for some reason didnt throw any exception when it considered the diffrence betwen

Re: Detect browser back or forward button clicked

2010-01-08 Thread Rogério Valente
Well, in fact you don't disable the buttons. In the disableFunctionKey.js file, the function just intercept the keydown or keypress and return a value tha is not the expected by the browser. As I wrote, maybe you can find a solution that intercept the browser back button click. On 7 jan, 12:13,

Re: better place for image

2010-01-08 Thread DaveC
I use ClientBundle (and CssResource) (I'm using GWT 2 by the way...) e.g. public interface RichToolTipClientBundle extends ClientBundle { @Source(resources/css/rich-tooltip.css) public RichToolTipCssResource getCss(); @Source(resources/img/logo.png) public ImageResource

Re: Clone a widget using DOM.clone ?

2010-01-08 Thread DaveC
public class ClonedWidget extends Widget { public ClonedWidget(Element element) { setElement(element); } } ClonedWidget myNewWidget = new ClonedWidget(Dom.clone(elementToClone, true)); Is that the kind of thing you're looking for? Cheers, Dave On Jan 8, 12:07 am, Michael

Re: Referencing deprecated class warning stack

2010-01-08 Thread khaled.tl...@gmail.com
Thanks 4 your answer. Unfortunately, It looks to be not the same cause. In my case, its the exactly same behaviour as lesli : ... I've posted elsewhere in another related thread which involved the assignment of collections. And in that case the discussion referred to the RPC calls returning

Re: GWT Incubator update for GWT 2.0?

2010-01-08 Thread Hethcox
In my app GlassPanel is no longer on top of all the widgets. It's on top of some, but not others. On Dec 27 2009, 11:43 pm, Chris Ramsdale cramsd...@google.com wrote: We're currently working on this and will send out an update shortly. In the meantime, any feedback regarding issues that you are

Re: addWindowClosingHandler firing when frame loads in IE

2010-01-08 Thread Thomas Broyer
On Jan 8, 12:29 pm, John Patterson jdpatter...@gmail.com wrote: On 8 Jan 2010, at 16:22, Thomas Broyer wrote: Use Hyperlink or InlineHyperlink widgets for internal navigation (unless you also want ClickHandlers, in which case Anchor is fine, calling History.newItem() in a ClickHandler,

Re: Referencing deprecated class warning stack

2010-01-08 Thread khaled.tl...@gmail.com
I've read the issues http://code.google.com/p/google-web-toolkit/issues/detail?id=4438 that you created and it looks coming from generic arguments as instance fields.. thks 4 your help. Regards. KT On Jan 8, 3:14 pm, khaled.tl...@gmail.com khaled.tl...@gmail.com wrote: Thanks 4 your answer.

CssResource in IE

2010-01-08 Thread skrat
Hi all, I got a problem using CssResource, after laborious convert from legacy CSS, everything works perfectly in gecko/webkit. However, IE loads/ sees only a couple of my CSS rules, like 5% of the whole stylesheet, which effectively destroys whole application. Debuggin from ensureInjected() call

How to cache DTD in Eclipse for GWT 2.0

2010-01-08 Thread Sagar
Hi I just installed fresh copy of eclipse and gwt plugin on it. but now the problem is each time i am doing something in ui.xml file, eclipse is trying to fetch the dtd. i am behind proxy which is 1000 miles away is there any way to cache the http://dl.google.com/gwt/DTD/xhtml.ent in eclipse,

Re: GWT Incubator update for GWT 2.0?

2010-01-08 Thread Paul Robinson
Hethcox wrote: In my app GlassPanel is no longer on top of all the widgets. It's on top of some, but not others. Could be this: http://code.google.com/p/google-web-toolkit/issues/detail?id=4073 If so, read the comments because there are workarounds in there (and star the issue). Paul --

Possible bug in gwt with type casting or normal behavior!

2010-01-08 Thread mariyan nenchev
Hi, I thing there is possible bug when type casting. Take a look and tell me is this the normal behavior. So if you have HashMapInteger, Object hash = getHashMap(); hash.get((int) myPrimitiveLongValue) will return null even there is value for that key. If you try Integer i = (int)

Re: How to cache DTD in Eclipse for GWT 2.0

2010-01-08 Thread olivier nouguier
In eclipses: Preferences XML Catalog In User part you can add your custom catalog. On Fri, Jan 8, 2010 at 4:10 PM, Sagar sagar.i...@gmail.com wrote: Hi I just installed fresh copy of eclipse and gwt plugin on it. but now the problem is each time i am doing something in ui.xml file, eclipse

Re: ClientBundle and Image Resource Location

2010-01-08 Thread Sammy
That worked, thank you very much :) On Jan 8, 1:10 pm, mariyan nenchev nenchev.mari...@gmail.com wrote: Did you tried src/main/resources/com/mycompany/myproject/client On Fri, Jan 8, 2010 at 2:07 PM, Sammy pico...@gmail.com wrote: Hello, I have a maven gwt project, and I'm using

Re: How to cache DTD in Eclipse for GWT 2.0

2010-01-08 Thread Jason Parekh
So once you download the two URLs you've already listed, click on 'Add' and then 'File system' and point it to one of the files (do the same for the other.) I just verified this indeed works. jason On Fri, Jan 8, 2010 at 10:46 AM, olivier nouguier olivier.nougu...@gmail.com wrote: In eclipses:

one servlet, many clients with gwt-rpc

2010-01-08 Thread Michael Vogt
Hello. I just received a question, if it is possible to access one central servlet (extending RemoteServiceServlet) that can be accessed by several gwt client applications. The interface that is implemented by the servlet is fixed. The same interface is used by every client application. I could

ImageResource bug in IE7

2010-01-08 Thread Thad
I have a Tree whose TreeItems I originally created according to the Mail sample way back under GWT 1.2: private String imageItemHTML(String imageUrl, String title) { return spanimg style='margin-right:4px' src=' + imageUrl.toLowerCase() + ' + title + /span; } This approach allows

GWT 2 gotcha in DatePicker

2010-01-08 Thread sorbus
In migrating an app from 1.7 to 2.0 I found that one thing didn't work. My app holds data based on a Date which can be retrieved by clicking on a date in the DatePicker. In 2.0 the data was not being retrieved. Turns out I was keying based on a Date object and the difference in 2.0 is that the

Re: ImageResource bug in IE7

2010-01-08 Thread Thomas Broyer
On Jan 8, 5:03 pm, Thad thad.humphr...@gmail.com wrote: I have a Tree whose TreeItems I originally created according to the Mail sample way back under GWT 1.2:   private String imageItemHTML(String imageUrl, String title) {     return spanimg style='margin-right:4px' src=' +

Re: GWT dev mode with pre-installed tomcat

2010-01-08 Thread Chris Ramsdale
What specific issues are you running into? On Fri, Jan 8, 2010 at 8:21 AM, Nuno brun...@gmail.com wrote: Hello everybody, I'm implementing gwt on a existing project. and i need to use dev mode with the already installed tomcat. Can anybody help me configure this? I'm using gwt 2.0

Re: How to cache DTD in Eclipse for GWT 2.0

2010-01-08 Thread Sagar
still no luck... eclipse just hangs whenever i start editing the .ui.xml files. -- 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 unsubscribe from this group, send

Re: javascript error (invalid Argument)

2010-01-08 Thread Chris Ramsdale
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 johnvden...@googlemail.comwrote: I have just come across the following error when testing my application in IE7, It seems to work fine in Chrome 4.0 and FF 3.5.7 I

Re: Suspicious Java interface definition in the Contacts example

2010-01-08 Thread Chris Ramsdale
yc, There's no GWT-specific reason to declare the interface abstract. The GWT compiler, just like the Java compiler, will discard the abstract qualifier. On Thu, Jan 7, 2010 at 8:44 PM, yc ycx4...@gmail.com wrote: Hello, If you have reviewed the Contacts example in the GWT tutorial, the

Re: better place for image

2010-01-08 Thread ale
Thanks for the answer, I will try your example. I'm a little afraid to upgrade to gwt 2.0, because I have a lot of pages developed with 1.7 ... and the idea of rewrite a lot of code now... Cheers Ale On Jan 8, 3:06 pm, DaveC david.andrew.chap...@googlemail.com wrote: I use ClientBundle (and

Re: How to cache DTD in Eclipse for GWT 2.0

2010-01-08 Thread Jason Parekh
Yikes, didn't realize Eclipse hangs as it tries to retrieve the file. Is Eclipse set up for your proxy? Also, could you try clearing all files in WORKSPACE/.metadata/.plugins/org.eclipse.wst.internet.cache ? On Fri, Jan 8, 2010 at 11:39 AM, Sagar sagar.i...@gmail.com wrote: still no luck...

Re: ImageResource bug in IE7

2010-01-08 Thread Thad
Thanks. AbstractImagePrototype.create(imageRsrc).getHTML() is it. On Jan 8, 11:21 am, Thomas Broyer t.bro...@gmail.com wrote: ... You'd have to use:    AbstractImagePrototype.create(imageRsrc).getHTML() in GWT 2.0 for the equivalent of the ImageBundle code. ...or you can use a

Re: better place for image

2010-01-08 Thread Thad
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 aleee...@gmail.com wrote: Thanks for the answer, I will try your example. I'm a little afraid to upgrade to gwt 2.0, because I have

Re: Referencing deprecated class warning stack

2010-01-08 Thread Trevis
I've been watching this thread too. 2.0 also introduced this for me as well. On Jan 8, 2:48 am, khaled.tl...@gmail.com khaled.tl...@gmail.com wrote: Hi, I've got the same type of exception with same environment. Is there something that we missed? Regards. KT On Jan 2, 7:54 pm, leslie

UiBinder, focus events

2010-01-08 Thread John
Using UiBinder setup, but I can't figure out how to detect loss of focus from a TextBox. No matter what I do, only Focus Gained is detected. I thought of examining the FocusEvent, but since the method isn't even called on Focus Lost, there's no point in doing that. I have this: @UiHandler(

Re: Problem: certain types of J2EE authentication with GWT 2.0 and Eclipse 3.5 plugin no longer work

2010-01-08 Thread Ian.G
Unfortunately no longer having my Filter code is holding me back. I need to put this functionality back together so I can serialize specific types of Exception that can can catch in my onFailure method. We have an AsyncCallback handler that will hook failed requests (for all our RPC services) in

Re: Is it possible to have a resizable FlexTable

2010-01-08 Thread Trevis
I saw your message and my gut reaction is that you should probably be doing this in css. As far as the browser is concerned it's just a table so having it react to the browser resizing should be easily done In css. On Jan 7, 2:37 pm, chris ceb...@gmail.com wrote: I was wondering if any one has

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

2010-01-08 Thread Fushion
Assuming a setup with Eclipse, I did the following: * Create file /src/jndi.properties: java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces

Re: addWindowClosingHandler firing when frame loads in IE

2010-01-08 Thread Thad
Tom, is there any way to capture the value of an anchor's href in my GWT code? My situation is that my application receives String from an RPC call that is bounded by the pre tag and contains any number of anchors. I display this in a HTML object in a SimplePanel in a ScollPanel for the user to

How to change in GXT Header

2010-01-08 Thread gatty
Hi how can we make changes in GXT header like color, image, editing of header all those thing? -- 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 unsubscribe from this

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

2010-01-08 Thread Erik Uzureau
http://code.google.com/p/google-web-toolkit/issues/detail?id=4463 On Jan 4, 10:09 am, Miguel Méndez mmen...@google.com wrote: Please file a bug against the plugin in the issue trackerhttp://code.google.com/p/google-web-toolkit/issues/list . On Fri, Jan 1, 2010 at 4:58 PM, Jeff Schnitzer

Re: addWindowClosingHandler firing when frame loads in IE

2010-01-08 Thread Thomas Broyer
On Jan 8, 7:27 pm, Thad thad.humphr...@gmail.com wrote: Tom, is there any way to capture the value of an anchor's href in my GWT code? My situation is that my application receives String from an RPC call that is bounded by the pre tag and contains any number of anchors. I display this in a

Re: UiBinder, focus events

2010-01-08 Thread Thomas Broyer
On Jan 8, 6:38 pm, John nesre...@gmail.com wrote: Using UiBinder setup, but I can't figure out how to detect loss of focus from a TextBox. No matter what I do, only Focus Gained is detected.  I thought of examining the FocusEvent, but since the method isn't even called on Focus Lost,

Re: UiBinder, focus events

2010-01-08 Thread John
On Fri, Jan 8, 2010 at 1:54 PM, Thomas Broyer t.bro...@gmail.com wrote: What you're actually looking for is the BlurEvent. Thanks. That works. John -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Quick question about gwtc

2010-01-08 Thread Matt Moriarity
The GWT compiler translates Java sources to JavaScript sources. This allows for things like JSNI, which would be lost in the bytecode, as well as allowing for greater optimization possibilities On Jan 8, 7:14 am, Chris Lercher cl_for_mail...@gmx.net wrote: Hi, quick question: What exactly does

gwt-mvc 0.4 is released

2010-01-08 Thread Francois Wauquier
http://code.google.com/p/gwt-mvc/ http://code.google.com/p/gwt-mvc/wiki/ReleaseNotes http://gwt-mvc.googlecode.com/svn/trunk/gwt-mvc-poc/demo/0.4/com.googlecode.gwtmvc.poc.GwtMvcPoc/GwtMvcPoc.html -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Validating user input

2010-01-08 Thread Dave
Thanks. I'll take a look. On Jan 8, 6:50 am, Lukasz l.plotni...@googlemail.com wrote: Hi, In my current project I'm using the gwt validation library (http:// sourceforge.net/projects/gwt-vl/) which supports both client- and server-side validation and integrates itself nicly with e.g.

Re: GWT compiler fail

2010-01-08 Thread lfrohman
After some research, and adding verbose to the compile step, I found this is a memory error. I tried various values for the -Xss -Xms and -Xmx options, and finally got the compile to succeed. On Jan 7, 12:28 pm, lfrohman lfroh...@gmail.com wrote: On the GWT 2.0 compile, I am getting a The

Re: Referencing deprecated class warning stack

2010-01-08 Thread Chris Ramsdale
I've updated the issue with a workaround, let me know if it doesn't work for anyone. Also, if you don't mind, please star the issue so that it gets prioritized correctly. - Chris On Fri, Jan 8, 2010 at 12:38 PM, Trevis trevistho...@gmail.com wrote: I've been watching this thread too. 2.0 also

Re: Deprecation warning in all RPCs dealing with collections on GWT 2.0 RC2

2010-01-08 Thread Chris Ramsdale
*I've updated the issue ( http://code.google.com/p/google-web-toolkit/issues/detail?id=4438) with a workaround, let me know if it doesn't work for anyone. * * * *- Chris * On Wed, Jan 6, 2010 at 1:42 PM, Chris Ramsdale cramsd...@google.com wrote: Please star the issue and add any relevant data

Re: Problem with ClientBundle image resources in development mode.

2010-01-08 Thread Arkady
Right, but I specifically turned the data URIs off (with ClientBundle.enableInlining = false) because I was getting issues with sprites in IE. So in order to debug them in Firefox in development mode I need it to work. On Jan 7, 1:29 am, Thomas Broyer t.bro...@gmail.com wrote: On Jan 7, 3:35 am,

Re: addWindowClosingHandler firing when frame loads in IE

2010-01-08 Thread Thad
Bingo again, Tom. In fact, doing this I don't even have to bother with History. I just grab the value href, parse it, and call my pop- up. I don't want (or need) it in the history change. On Jan 8, 1:52 pm, Thomas Broyer t.bro...@gmail.com wrote: ... Ah, OK, so in your case, retrieving the

Re: GWT Intigration with existing project .... Hosted mode issues.

2010-01-08 Thread Martín D'Aloia
if you moved the gwt.xml behind your client package you don't need specify source tag. Try removing it. On 7 ene, 07:25, Sorinel C scristescu...@hotmail.com wrote: Have you try to set up the dev env right? for this check first

String.equals not working in IE

2010-01-08 Thread TM
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 test for changes: if

Re: Composite and Resize event.

2010-01-08 Thread Venkata Ramana Avvari
Hi Suddep, Which code u r looking, JavaScript or Java etc.,, If you can send the screen shot it will be very easy to understand. -Venkat On Thu, Jan 7, 2010 at 11:33 AM, Sudeep S sudee...@gmail.com wrote: Hi I have a vertical panel which has multiple sections and each of them is a

Re: GWT Session management regardless of Servlet Container

2010-01-08 Thread Vitaliy Ryabukhin
No, it doesn't. Why it doesn't? How an attacker can obtain and pass our rpc-sessionId? -- 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 unsubscribe from this group,

Re: Working in development mode in GWT with php

2010-01-08 Thread dleins
I have ths exact problem with another JSON application using GWT 2.0. It works fine when compiled but the exact same code does not work in hosted mode. I am using SmartGWT, but do not think that is the problem... Doug On Jan 6, 7:35 pm, Skeezix skeezix6...@gmail.com wrote: also when I compile

Re: Listen for Browser resize event

2010-01-08 Thread Martin D'Aloia
You can do it in GWT 1.6+ with: Window.addResizeHandler(new ResizeHandler() { @Override public void onResize(ResizeEvent event) { put your code here } }); or in GWT prior 1.6 with: Window.addWindowResizeListener(new WindowResizeListener() { @Override public void

Loading/parsing time for CssResource

2010-01-08 Thread Sebastian
Hi, I'm playing around with GWT 2.0 and I really like it! But I've encountered a problem with ClientBundles/CssResources. After moving my static CSS files from the HTML-file (style-tags) to a ClientBundle in my EntryPoint, I have timing problems. I position some elements relative to others in an

Re: Validating user input

2010-01-08 Thread Venkata Ramana Avvari
Hi Dave, The JavaScript code sample for Number validation: for Client side validation function isNumeric(obj, fieldName) { var str = obj.value; if ( ! isEmpty(obj, fieldName) ) { if ( ! ValidateNumeric(obj.value) ) { alert(fieldName + can

Re: Add massive data into a Grid or FlexTable

2010-01-08 Thread 郑翼羽
I have fixed it , it is my fault , because I always works under dev model while I switch to web model , the time is below 0.5 second now. On Thu, Jan 7, 2010 at 9:49 AM, 郑翼羽 ground...@gmail.com wrote: Hi, I need to construct a table like grid with massive data, for example 100 * 60. The

Add massive data into a Grid or FlexTable

2010-01-08 Thread 郑翼羽
Hi, I need to construct a table like grid with massive data, for example 100 * 60. The code I used is dataGrid.setText(i, j, value), so I need to call it 6000 times, and the value varied from null data to strings with unfixed length. It took nearly 4 seconds to display grid, regardless of the

StringBuffer problems in GWT

2010-01-08 Thread Brittany
The simplest way to explain my problem is to show you an example. CODE USING String: String str = Two; str += \n; str += lines; System.out.println(str); OUTPUT: Two lines CODE USING StringBuffer: StringBuffer sb = new StringBuffer(); sb.append(Two); sb.append(\n); sb.append(lines);

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

2010-01-08 Thread Stine
Hello :) I am very, very new to all this GWT stuff... so I might need all your patience!! ;D Sorry! I have created a very simple GWT application... and can see it working when I launch in development mode from within my Intellij IDEA! 8D I am having a bit of a problem with this development mode

Can't open my GWT-page

2010-01-08 Thread newnoise
Hi, I created a little GWT-Page. But after I upgraded my GWT to 2.X I can't open the page anymore. The browser always says: Please (re) compile the project, or use hosted mode (actually it doesn't say that litterally, but you know what I mean :) ). I recompiled the project several times and no

Re: Gwt module may need to be (re)compiled

2010-01-08 Thread Yan
Hi! I had the same problem and I fix it by changing this line in my public void onModuleLoad() method: RootLayoutPanel.get().add(myDockLayout); for the following lines: RootLayoutPanel.get().add(myDockLayout); RootPanel.get().add(RootLayoutPanel.get()); My previous line work like a

Need to insert pdf in tabbed pane

2010-01-08 Thread sachin
Hi , I need to insert the pdf/excel in the tabbed pane.Can any one help me on this. Thanks Sasiraj -- 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 unsubscribe

Problem with IE.

2010-01-08 Thread Jimmy Lee
I am playing with GWT 2.0 and it just works fine with Chrome and FF, but not with IE. I have tested it with IE 7 and 8. Strange thing is that both show no errors at all and say module is loaded. There is no problem to view its source code through IE. It sounds very normal but nothing is

How to redefine standard.css ?

2010-01-08 Thread Ista Pouss
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 specifics css. How is it possible to modify that ? I have read How to disable standard css at

Re: GWT dev mode with pre-installed tomcat

2010-01-08 Thread Sebastian
Hello, I use IntelliJ as IDE but basically what I do is to start the Tomcat as normal and to start the GWT class com.google.gwt.dev.DevMode with the following params. -noserver -gen /Users/hennebrueder/workspaces/default/bund-apfel/ target/bund-apfel-gen -war

Custom class in RPC

2010-01-08 Thread Micha Roon
Hi, When I read the documentation, it says you can use any Class that implements IsSerializable and has a no args constructor and whose fields are all serializable. I created such a class but I allways get the same error: 09:31:33.795 [ERROR] [pix_me] Line 12: No source code is available for

Re: How can I write to file system from GWT servlet

2010-01-08 Thread Hackle
Hi, I have the same problem. I deactivated GEA in Project Properties Google App Engine but now my client side application doesn't work probably. I m using some objects from smartgwt and the skin seems to be disappeared. If I put the GEA back on everything works fine again (except the

Help is needed (running GWT application)

2010-01-08 Thread Shadiho
Hi, I am new to GWT and I just installed GWT SDK and Eclipse plugin, after creating a GWT application I can compile and run it, but my problem that when I am copying the URL to any browser, I am getting Web Page unavailable or Link is broken. Please, any one can advise the reason of this issue

docklayoutpanel in a dialogbox in ie8

2010-01-08 Thread will vuong
maybe this is super trivial but i'm having trouble getting a docklayoutpanel in a dialogbox to render correctly in ie8 (the center region occupies the entire contents of the dialogbox). everything renders correctly in firefox 3.5 however. the north and south regions are being clipped in ie8. my

GWT 2 Css issues with new layout panels (Proposal)

2010-01-08 Thread Sebastian
Hello, the new layout panels SplitLayout, DockLayout etc do not mark their elements with css classes. As a consequence, if you want to style them with custom css, it is actually impossible. The only option is to inject the styles directly in the code but you cannot use stylesheets based styles.

  1   2   >