Re: DeckPanel causes Widget to disappear

2009-03-04 Thread Joe Cole
Arrgh. I thought I was using DeckPanel yesterday and was using StackPanel. The easiest way to debug it will be using firebug. Check to see it's structue after loading - i.e. is the widget a child? Sorry about that! Joe On Mar 4, 8:30 pm, Robert J. Carr rjc...@gmail.com wrote: Hi Joe- What API

Re: EntryPoint onModuleLoad called multiple times over course of application lifetime

2009-03-04 Thread Vitali Lovich
Is it possible that as a result of the RPC call the javascript loads another page or reloads the current one? On Wed, Mar 4, 2009 at 2:30 AM, Brian Ferris bdfer...@gmail.com wrote: I have a relatively complex GWT application composed of my main application EntryPoint and a number of library

Re: No source code is available for type java.io.File; did you forget to inherit a required module?

2009-03-04 Thread ginger_ninja
Hi Raghu, The GWT compiler complains because it doesn't support the full range of Java classes present in your run of the mill JRE. The reason for this can be found in asking the question; What does the GWT compiler produce as output?. Answering this question yields a far more pertinent

Re: Deploying to a Shared TOMCAT

2009-03-04 Thread Sean
Hey Guys, I want to thank you for your help. I still have had no luck, but I'm starting to think it's on the Tomcat side. I even tried downloading a complete exmaple of a .jsp servlet and it's not working. Even when I link straight to the jsp which should kick off the Tomcat server to handle it,

Google Analytics and GWT

2009-03-04 Thread rlaferla
This may be simple (or not) but has anyone integrated Google Analytics into a GWT app? Are there any tips or issues I should be aware of? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: How do you remove a handler?

2009-03-04 Thread Ian Bambury
Ah! Thanks very much for that. Ian http://examples.roughian.com 2009/3/4 Jason Morris lem...@gmail.com Hi Ian All of the add*Handler methods return a HandlerRegistration object, you keep a reference to it, and then invoke HandlerRegistration.removeHandler() when you want to remove it.

Re: Problem in running JUnit testcases in GWT

2009-03-04 Thread Charlie Collins
Something is wrong with your classpath somewhere. Are you using JUnitCreator? If so what does the script look like. Did you compile your code (not GWT compile, just regular javac). See some of the other many threads here in this forum for examples (the end of this one has a working script, for

i am wondering can gwt do the following?

2009-03-04 Thread ytbryan
http://labs.digg.com/stack/ can someone point me to where i can do something like this? or it is not possible for gwt to accomplish this? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Re: which tools you have used for development of GWT?

2009-03-04 Thread Charlie Collins
Eclipse, Maven, emacs, bash. Sort of a vague question though ;). On Mar 4, 12:05 am, shiren1118 shiren1...@126.com wrote: which tools you have used for development of GWT? I'm puzzled --~--~-~--~~~---~--~~ You received this message because you are subscribed to

Re: How can I use gwt for my project

2009-03-04 Thread Charlie Collins
Though you can do one entry point per page, that is sort of missing the point. If your project is completed, then don't try to just use GWT to make it more beautiful. GWT is about a different approach, about Ajax so that you really have a single *page* that can handle the entire web based

Re: GWT with JPA not working in hosted mode

2009-03-04 Thread Arthur Kalmenson
That doesn't really make sense to me either. We use JPA annotated beans on the client side all the time and all of them have CascadeType. We don't use either Gilead or GXT, so it might have something to do with those libraries. Can you try to create small sample project without those libraries

Re: How to retrieve data as byte[] in GWT from getImageData

2009-03-04 Thread Thomas Broyer
On 4 mar, 06:10, Kevin Tarn kevn.t...@gmail.com wrote: Unfortunately, using JsArrayInteger is very slow:     public byte[] getBitmap() { //        String str = getImageData(0, 0, width, height); //        byte[] ar = new byte[str.length()]; //        for (int i=0; iar.length; i++) //      

Re: Dealing with session timeout and container managed security

2009-03-04 Thread marcelstoer
Hhhmm, the community being quiet can mean a lot of things...none are really positive. Was I talking about some dark GWT corners where no stable/proper solutions exist? Or is there simply no right way to solve my problem, but rather many potential solutions that all have their flaws? On Feb 28,

Window.confirm in timer.run()

2009-03-04 Thread Danny Schimke
Hello! I am using a timer to ask the user after xy minutes to save his changes to database. In the run() method of timer I ask the user wheather he want to save the changes. If the user clicks OK I'll save othwerwise I'll do nothing. I shedule the timer repeatly after xy minutes. When does the

Checked Exception handling - specialized onFailure not being picked up?

2009-03-04 Thread chillyspoon
Hi all, I have a question about handling custom checked exceptions. Say I have the code below implemented in an Async call - GWT appears to ignore the specialized version of onFailure - despite having the correct instance type available if I pop a break point into the default

Re: i am wondering can gwt do the following?

2009-03-04 Thread mikedshaffer
Agreed. Some of the GWT Canvas work make some of this easier, but over all, Javascript in a browser (which is what GWT is after all!) isn't your best choice. Flash (which they used) or an applet (java or whatever Microsoft is calling an activex control these days...) would make your life

Read HTTP GET variables

2009-03-04 Thread Miloš Ranđelović
Hi, I am launching a GWT app with passing some arguments via URL, e.g. something like this: http://localhost/com.domain.App/App.html?param1=value1 Now, the question is: How can I read the param1-value1 pair from the above URL? Is that even possible? Thanks in advance!

Re: i am wondering can gwt do the following?

2009-03-04 Thread Lothar Kimmeringer
mikedshaffer schrieb: Agreed. Some of the GWT Canvas work make some of this easier, but over all, Javascript in a browser (which is what GWT is after all!) isn't your best choice. The rendering itself shouldn't be much of a problem. Since http://www.zark.com/ which already worked on Netscape

Re: Read HTTP GET variables

2009-03-04 Thread Darkflame
I think; String QueryString = Window.Location.getQueryString(); If what you want, but you would have to parse it yourself unless the params are knowen in advance. Or, purhapes, you might want to use a history-token based data instead App.html#param1=value1 Then the data present could trigger a

Re: Read HTTP GET variables

2009-03-04 Thread Miloš Ranđelović
Thanks! Window.Location.getQueryString() works perfectly well for me. On Mar 4, 3:59 pm, Darkflame darkfl...@gmail.com wrote: I think; String QueryString = Window.Location.getQueryString(); If what you want, but you would have to parse it yourself unless the params are knowen in advance.

Re: Question about mGoogle Maps URL and its parameter gwt

2009-03-04 Thread Danny Schimke
Thank you very much! Good to know! -Danny 2009/2/27 Eric Ayers zun...@google.com Removing that parameter will not affect the functioning of the Maps API. It is currently used for accounting purposes only. 2009/2/27 Danny Schimke schimk...@googlemail.com: Hello! Does anyone know what

Tips for reducing Cache.html sizes?

2009-03-04 Thread darkflame
I know this has probably been asked before a few times, but searching around I didn't find anything specific to help me. My current site takes about 10 seconds to load for the first time, mostly down to a 156kb cache file. (for the firefox at least, the others are similar) I understand this only

Re: EntryPoint onModuleLoad called multiple times over course of application lifetime

2009-03-04 Thread Brian Ferris
I'm not sure. It is interesting to note that I don't see this behavior in web mode (aka compiled to javascript and run in the browser). So I'm going to assume it's not an issue I need to worry about? On Mar 4, 12:13 am, Vitali Lovich vlov...@gmail.com wrote: Is it possible that as a result of

Re: which tools you have used for development of GWT?

2009-03-04 Thread Darkflame
Very vague. Eclipse is my absolute must have for me. I use a old version of GoLive for the html, and PSP for the image stuff. Firefox+Firebug is an absolute must have too, makes debuging and optimisation s much easier. I also quite often use Opera too though, its ability to life-edit HTML/

Re: Tips for reducing Cache.html sizes?

2009-03-04 Thread Lothar Kimmeringer
darkflame schrieb: I know this has probably been asked before a few times, but searching around I didn't find anything specific to help me. My current site takes about 10 seconds to load for the first time, mostly down to a 156kb cache file. (for the firefox at least, the others are similar)

Re: Tips for reducing Cache.html sizes?

2009-03-04 Thread Ian Bambury
Hi, Do you want me to check the load time from the UK? Also, you might like to check the time from my site (220-230k, based in the UK) Depending on the results, it might indicate that it's not the size but the processing which is the problem. Does it take a similar time to load locally? Ian

Re: Error Gwt Sockets

2009-03-04 Thread Jason Essington
Long is an emulated type in GWT (to be compatible with longs in java. If you are returning a long from JSNI you could use double instead -jason On Mar 3, 2009, at 2:44 PM, frankCostello wrote: Hi, I try to use Sockets.jar, but when I compile, give me an error: [ERROR] Line 653: Type

Re: Window.confirm in timer.run()

2009-03-04 Thread Vitali Lovich
You're probably using scheduleRepeat. Browsers are strictly single threaded (some multi-threading Javascript support coming in FF3.1 that I know of). Anyways your problem is this: run() showWindow() browser keeps generating timer event probably because that comes from the OS there's no locking

Re: Error Gwt Sockets

2009-03-04 Thread Vitali Lovich
But be careful that if you do, you're code will not work past 1.5. In 1.6, longs are real longs except emulated an object. The question you need to ask yourself is do you really need a long? If you don't, then just use int. If you do, then you'll need a code path for 1.5 which treats it as a

Re: Tips for reducing Cache.html sizes?

2009-03-04 Thread Lothar Kimmeringer
Darkflame schrieb: My bandwidth is fine (8Mb/s down), but I suspect the sever is slow hence the difference. For one thing, I'm in the netherlands and its in america. That should be visible by checking the download-bar (at the bottom of the window of e.g. InternetExplorer). That way you can

Incubator: ScrollTable, hide and sort column

2009-03-04 Thread Twentyseven
Hello, I'm using Scrolltable from the incubator without problem, untill I tried to hide a column (not the last one but one at the beginning). When I tried to sort the visible columns, I found that by clicking on a header cell, it was sorting the previous column and not the good one. Is it a bug

Re: How can I combine 2 projects into one with gwt 1.6+?

2009-03-04 Thread branflake2267
How do I include the classpath for another module so ant will build? - My main module com.gawkat.gwt.Test - In Text.gwt.xml file I include inherits name='com.gawkat.gwt.Apple'/ - I have added Apple projects classpath and src folder to Test Debug Configurations classpath and hosted mode will

Re: Tips for reducing Cache.html sizes?

2009-03-04 Thread Darkflame
Thanks, Pretty sure its the loading itself. Localy takes 2-3 seconds. (this is also the time I get roughly when loading the site normaly with part of it cached). Your site also loads in about 2 seconds or less. I'll send you the link privately, as I dont want it published on a group ;) -Thomas

Re: Tips for reducing Cache.html sizes?

2009-03-04 Thread Darkflame
Sounds like a massive project you got there indeed. I wish you luck getting all that sorted. I'm confident its loading time, as the bars show me. Thanks for the information on the transatlantic load times, thats good to know that isnt the reason. On Mar 4, 5:16 pm, Lothar Kimmeringer

Slow data loading to a FlexTable

2009-03-04 Thread eadams
An application I'm working on uses a FlexTable to display a list of parts. There a 5 columns in the flex table. When the parts list is not very large, the table loads in under 1 second. One list of parts is 268 rows. A list of this size takes between 12 and 13 seconds to load. I put displays in

Re: Slow data loading to a FlexTable

2009-03-04 Thread Lothar Kimmeringer
eadams schrieb: The timings showed the first third was in about 1.5 seconds, the next third was in about 4 seconds and the last third in over 6 seconds. This elapsed time is after the data has been received from the server (which is also very fast). All of the above is on a Windows Vista

Re: Need fix for GWT 1.6 Jars in Maven Repo

2009-03-04 Thread eneveu
I had the same problem yesterday, and I stumbled on this post. Thanks a lot for the explanation. I opened an issue here: http://code.google.com/p/google-web-toolkit/issues/detail?id=3439 (Will, since your post explained the problem clearly, I took it as a basis in the issue's description

Re: which tools you have used for development of GWT?

2009-03-04 Thread bamatico
I have only gotten as far as working through the StockWatcher tutorial but am getting the following [ERROR] Unable to instantiate 'com.google.gwt.sample.stockwatcher.server.StockPriceServiceImpl'. But, to answer your question ... I am not using an IDE (eclipse) but am copy/pasting into my

Re: Google Analytics and GWT

2009-03-04 Thread shital k
Hi All, Can any one guide me how to add the feature zoom in/ zoom out to charts using gchart and gwt? Thanks, Shital --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Jetty classpath in GWT 1.6

2009-03-04 Thread Markus Knittig
Hello! Currently it seems that Jetty only loads class files and jars from WEB-INF/classes and WEB-INF/lib. The classpath argument are getting ignored (worked with Tomcat). I tried to add extra classpath folder via jetty-web.xml / jetty-env.xml, but that doesn't seems to work (e.g. Spring

Compilation of a GWT project for firefox

2009-03-04 Thread Chichone
i have the following compilation error : [ERROR] Unable to load module entry point class org.vnf.itineo.client.Main (see associated exception for details) com.google.gwt.core.client.JavaScriptException: (TypeError): Cet objet ne gère pas cette propriété ou cette méthode number: -2146827850

Re: i am wondering can gwt do the following?

2009-03-04 Thread ytbryan
thank you all for your reply On Mar 4, 3:55 pm, Lothar Kimmeringer j...@kimmeringer.de wrote: mikedshaffer schrieb: Agreed.  Some of the GWT Canvas work make some of this easier, but over all, Javascript in a browser (which is what GWT is after all!) isn't your best choice. The

Re: Compilation of a GWT project for firefox

2009-03-04 Thread davidroe
gecko1_8 On Mar 4, 2:08 am, Chichone hicham.ass...@gmail.com wrote: i have the following compilation error : [ERROR] Unable to load module entry point class org.vnf.itineo.client.Main (see associated exception for details) com.google.gwt.core.client.JavaScriptException: (TypeError): Cet

SmartGWT: retrieving node value

2009-03-04 Thread ytbryan
hi all, i posted something on smartgwt forum but didn't get much response. so i hope someone here can give me some advices. .. I can't

Stuck or cancelled ?

2009-03-04 Thread carsten...@googlemail.com
Hello, it seems you're a little bit stuck, or maybe cancelled your project ?! Eventually you really should split your work into two projects, i think nearly everyone is waiting for the php server solution, please share it with the world. Good luck, CRO

Followup on elem is null issue (Firefox 3)

2009-03-04 Thread dunhamst...@gmail.com
The previous thread for this issue is no longer taking new posts, but after receiving a few emails, I wanted to follow up on this issue. http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/fabd646526aaf2bc?pli=1 In short, it manifests itself as Widget.element and

google image search in my java application

2009-03-04 Thread pitty
Hi, i try to create a little JAVA-application that should make a google image search and show the images. is the gwt the right thing for that. some years ago, there was a library that only provided a googleapi.jar and a license key. is there still something simple like that? thanks, ralf

Re: Window.confirm in timer.run()

2009-03-04 Thread Danny Schimke
Thanks for that detailled answer ;) 2009/3/4 Vitali Lovich vlov...@gmail.com You're probably using scheduleRepeat. Browsers are strictly single threaded (some multi-threading Javascript support coming in FF3.1 that I know of). Anyways your problem is this: run() showWindow() browser

Re: Slow data loading to a FlexTable

2009-03-04 Thread eadams
Thanks for the suggestions. Changing the code to add the FlexTable to the scroll panel after loading the data resulted in a good improvement. The 268 row parts list will now load in IE in just over 5 seconds. I tried the setVisible () suggestion as well, but that did not yield much change. The

Re: Window.confirm in timer.run()

2009-03-04 Thread Danny Schimke
Yeah! I canceled the timer and restarted it in in the run() method... It is about the way you've advised me. Thanks again! -Danny 2009/3/4 Vitali Lovich vlov...@gmail.com Did that solve your problem? On Wed, Mar 4, 2009 at 12:35 PM, Danny Schimke schimk...@googlemail.comwrote: Thanks

Reloading borgmon for Stubby Doom thingoEOM

2009-03-04 Thread Eric Ayers
-- Eric Z. Ayers - GWT Team - Atlanta, GA USA http://code.google.com/webtoolkit/ --~--~-~--~~~---~--~~ 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: strange behavior for float numbers

2009-03-04 Thread Tony Paul
Thank you Alan. The numbers I want to display, come from a file, to the server, then the server sends those numbers to GWT. So I don't have control generating the numbers as rational numbers. The solution that worked for me is to read the numbers on the server as double, then send them to GWT.

Re: Bug in gwt Grid, Setting Background image

2009-03-04 Thread Tobe
I am getting a similar problem with setting the background image in a flex table. The image seems to be set for the table as a whole and then also for each cell in the first column. The problem started occuring after upgrading to 1.5 from 1.3. (It also doesn't happen in Firefox, just IE7)

modify model for PagingScrollTable, see updates?

2009-03-04 Thread limbicsys...@gmail.com
I'm using a PagingScrollTable with my own MutableTableModelT. Is it possible to update the model and have the table re-draw itself in response to the change? The use case I have in mind is that the user is viewing some data in the table, and then clicks some kind of button to filter the table

Creating charts using GWT

2009-03-04 Thread JoeB
Hi, Can someone give me advice on the best way to create polished-looking charts using GWT? Notes: 1) My GWT app won't have web access so it can't call out to Google Visualizations. 2) The GChart package is nice for bar charts and line charts, but it doesn't support gauges (like on a dashboard)

Re: How to retrieve data as byte[] in GWT from getImageData

2009-03-04 Thread Matt Bishop
According to the WhatWG spec for canvas, getImageData() returns a CavasPixelArray, which is an array of bytes. What if you created a JavaScriptObject to represent it? Does GWT thunk to bytes across the JSNI boundary OK? I know it won't pass arrays of anything back, but individual elements maybe:

Buttons Question

2009-03-04 Thread fatjack1...@googlemail.com
Hi, I have a rather straight forward question that is driving me up the wall trying to solve. Im sure someone on here can help me. So here goes: Basically I have a list of records created in a for loop and a Button which I want to associate with each record. I need to make a listener that takes

Re: GWT with JPA not working in hosted mode

2009-03-04 Thread noon
Hi, I have a small template of this and will post it where you want me to ;) This afternoon, I analyzed stack trace and found some strange code in CompilingClassLoader GWT class (http://code.google.com/p/google-web- toolkit/source/browse/releases/1.5/dev/core/src/com/google/gwt/dev/

DATEBOX HOURS RESETTED

2009-03-04 Thread bond
Hi, I've a question about DateBox widget. If you set a Format as this: dd/ MM/ HH:mm on DateBox, when you are selecting a Date, the hour minutes are resetted. So in your dateBox you have a date as 04/03/2009 15:30 and then you're focusing on the textbox, the DatePicker is displayed.But when

Loading new HTML page when button is clicked

2009-03-04 Thread mrfreeze81
Hello, I'm trying to navigate from one HTML page to another when a button is clicked on the first. I have a button listener added and it's inside a panel. Now when I click the button, I want to load a new page. I do not want to use code RootPanle.get().add(new Page1); . . when

Re: How can I use gwt for my project

2009-03-04 Thread Jason Essington
In your specific case it sounds like you want to make certain items on your pages dynamic. That can be doe with GWT using either a singe or multiple entry points. You would still use one main module that is a monolithic compilation of all of your dynamic parts. Include the script tag for

Re: Loading new HTML page when button is clicked

2009-03-04 Thread Ian Bambury
You *do* need to do it like that. But you also need to write out a history record when you display a page. In the onModuleLoad, you check the history token and display whichever page the history token tells you to load. Have a look at the History() class Ian http://examples.roughian.com

limitation on text area length?

2009-03-04 Thread greenpossum
Is anybody aware of browser-specific limitations on the length of text in a textarea? I have reports from some users that their text is truncated after they have pasted it from a TinyMCE instance back into a GWT textarea. My suspect would be IE but I have not got a reply from the user yet. On a

Re: Dealing with session timeout and container managed security

2009-03-04 Thread Jason Essington
The problem with jumping ahead of the RemoteServiceServlet for your authentication is that you don't have a good way to communicate to GWT that there was an authentication exception. I tend to do my JAAS login inside the RemoteServiceServlet where I can throw a checked

Re: EntryPoint onModuleLoad called multiple times over course of application lifetime

2009-03-04 Thread Jason Essington
remember, if your libraries (other GWT modules) also have entry points, all of the onModuleLoad() methods will be called in turn. -jason On Mar 4, 2009, at 12:30 AM, Brian Ferris wrote: I have a relatively complex GWT application composed of my main application EntryPoint and a number of

Re: limitation on text area length?

2009-03-04 Thread mikedshaffer
Can only answer the first one, and partially. I was teaching a high school web design class a couple of years ago and a kid copied and pasted about a zillion characters into a text area and got it to fail. I'm sitting on a bus right now so I don't have the specifics, but I seem to remember it

Has CustomFieldSerializer functionality changed in GWT 1.6

2009-03-04 Thread evgeniy
Hi, I was using GWT 1.5.2 and have custom field serializers with serialize (...) and deserialize(...) methods. And it was working perfectly. When I tried GWT 1.6.1 instead I've got serialization exception. When I switch back to 1.5.2 all works perfectly again. Does anybody knows what was changed?

Error: missing ; after for-loop initializer

2009-03-04 Thread gwt-noob
In the Firefox error console I see the error message: Error: missing ; after for-loop initializer Source File: my host.cache.html Line: 42, Column: 167 I'm using GWT 1.5.3 and I looking around found a Fixed issue but the link on GWT release notes is dead

problem about add the 3rd party gadgets to GWT page.

2009-03-04 Thread Xiongjia Le
Hi All, Yesterday, I wrote a test page for add the gadget of Google Friend Connect to my GWT page. I create a new HTML object and set the gadget's script (got from Google Friend Connect ) to this object. This is the code summary: HTML htmObj = new HTML(!-- some script got

Re: GWT with JPA not working in hosted mode

2009-03-04 Thread sutarsa giri
Hi, you may need to take a look at -noserver option when running your gwt shell. with this, you could use your favorite servlet container as server for your gwt shell. regards, Gede sutarsa 2009/3/3 grishag grigori.gold...@gmail.com Hi, I have a problem running GWT in hosted mode using JPA

Sequential workflow in an asynchronous GWT world

2009-03-04 Thread rlaferla
How is everyone managing to implement sequential workflows when GWT only allows async calls? I have a series of panels that user must respond to in sequence and their answers may lead to a different path of panels (warnings, error panels, etc..) I think every GWT programmer working on a large

Re: Announcing GWT 1.6 Milestone 2

2009-03-04 Thread Riyaz Mansoor
Just installed M2 and took a look around. I must say I like it - feels more natural to me. For a new project I wanted to start in 1.6, I didn't want to migrate in the middle and update all the deprecated stuff. Haven't put it through its paces yet. But first thing - I have control of web.xml :)

Question about Server-client model.

2009-03-04 Thread wsstop
Hi, I’m a very beginner of GWT. I need some help. I’m working on some project such as: 1. User on server make some Java application by using Swing , AWT, or other API. 2. Server converts them into Java script by using GWT and sends them to client. 3. Whenever contents on server are changed,

Re: Sequential workflow in an asynchronous GWT world

2009-03-04 Thread Vitali Lovich
You have to think about what kind of UI the users actions have caused. For instance, if you would expect all inputs to become disabled (or at least the one which would generate more async calls). Perhaps also some kind of waiting indicator that you are in an async call. On Wed, Mar 4, 2009 at

Re: Sequential workflow in an asynchronous GWT world

2009-03-04 Thread Vitali Lovich
Sorry - so to make it more applicable to what you were asking: disable your current UI/indicate that the application is working. you may also want to prefetch the UI here if necessary. when you receive your result in your async callback, perform the transition. On Wed, Mar 4, 2009 at 10:32 PM,

Re: Google Analytics and GWT

2009-03-04 Thread Arthur Kalmenson
How is this related to Google Analytics? Please start another thread. -- Arthur Kalmenson On Wed, Mar 4, 2009 at 8:04 AM, shital k skmai...@gmail.com wrote: Hi All, Can any one guide me how to add the feature zoom in/ zoom out to charts using gchart and gwt? Thanks, Shital

pagingScrollTable re-size

2009-03-04 Thread verl
When I re-size the Browser window, the left Side of my PagingScrollTable moves around. In the pagingScrollTable example: http://collectionofdemos.appspot.com/demo/com.google.gwt.gen2.demo.scrolltable.ScrollTableDemo/ScrollTableDemo.html When you re-size the browser, the left side of the table

The method addClickListener(ClickListener) in the type Label is not applicable for the arguments (TheLocalConnectorContent)

2009-03-04 Thread zackmac
I'm trying to make a click event occur for several images that are rendered as HTML using AbstractImagePrototype.getHTML() and having trouble. I can make a click event just fine when I do each individual HTML object, but when I try to use the this pointer, I get the error in the subject. Here's

Why does FormPanel don't implement the reset method?

2009-03-04 Thread ChaoS
IE an FF both supply this method --~--~-~--~~~---~--~~ 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

Validation Framework

2009-03-04 Thread Pete
Has anyone found a simple and still supported validation framework for gwt yet? Cheers Pete --~--~-~--~~~---~--~~ 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: GWT with JPA not working in hosted mode

2009-03-04 Thread grishag
I tried a few things today but beside more problems, no solution yet. 1. Created a few POJOs and added a bunch of JPA annotations to them (including the javax.persistence.CascadeType). In my RPC service class, I manually instantiate a POJO and return it. This works fine. The GWT compiler/shell

Re: Sequential workflow in an asynchronous GWT world

2009-03-04 Thread hazy1
Making an async call appear to be sequential is easy, just block or fade out or have a pop up progress bar until the async operation completes. On Mar 4, 10:15 pm, rlaferla robertlafe...@comcast.net wrote: How is everyone managing to implement sequential workflows when GWT only allows async

how to get imsges from server to client

2009-03-04 Thread avd
dear sir, i have a problem in gwt my problem is: How to get images may be 100 images at once from server to client and dispaly them at browser? please send me some good solution abt this problem. with regards Avdhesh --~--~-~--~~~---~--~~ You received this

Re: Buttons Question

2009-03-04 Thread alex.d
The easiest way is probably to extend button class to hold an extra id. Smth. like (not checked - just to give you an idea): class myButton extends Button { private int id; Button(int id) { this.id = id; super(); } public int getId() { return id; } } Every time you

Re: popup menu example

2009-03-04 Thread Sumit Chandel
Hi Carlo, As Vagner pointed out, you can find an examples of various widgets in the Showcase sample application linked above (just click on the Source Code tab to see view the GWT source). In case you were looking for an example of a Menu widget rather than a Popup (it was unclear in your

Re: (JSNI) Accessing this instance from inner JS functions

2009-03-04 Thread Sumit Chandel
Hi Andrey, The last solution that Thomas and sutarsa girl proposed should do the trick (assigning the var to the 'this' variable before referencing functions from it). The reason why this must be done to make sure that the copy of the 'this' object that you're dealing with is what you expect it to

GWT tree Panel

2009-03-04 Thread 144_genting
Hi i am new with gwt and am having some problems with the tree panel. it doesnt seem to appear. really need some help here. thnxs! below is my code. final TreePanel treePanelVistaArrows = new SampleTree(); //treePanelVistaArrows.setTitle(Vista Arrows);

Re: GWT tree Panel

2009-03-04 Thread 144_genting
the tree does not appear in the navigation panel that i have setup on the lefthand side(west). --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

[gwt-contrib] Comment on WAR_Design_1_6 in google-web-toolkit

2009-03-04 Thread codesite-noreply
Comment by mar...@myd0.de: Sorry, forgot that the build.xml compiles the classes on ant hosted. Without the compile task it isn't working... :-/ The problem still exist and can currently only be solved be copying classes and libs into a central war folder. But this isn't nessesary. Jetty is

[gwt-contrib] Re: Four quick compiler code reviews -- trunk

2009-03-04 Thread BobV
On Tue, Mar 3, 2009 at 2:16 AM, Scott Blum sco...@google.com wrote: SourceGen: all this really does is make it so that when you click on a JsniMethodBody in the debugger, you can see the source. Is SourceGenerationVisitor specified to be able to recreate the original Java input? Also, why

[gwt-contrib] [google-web-toolkit commit] r4917 - in trunk: dev/core/src/com/google/gwt/core/linker dev/core/src/com/google/gwt/dev/jjs/imp...

2009-03-04 Thread codesite-noreply
Author: sp...@google.com Date: Wed Mar 4 08:03:43 2009 New Revision: 4917 Modified: trunk/dev/core/src/com/google/gwt/core/linker/IFrameLinker.java trunk/dev/core/src/com/google/gwt/dev/jjs/impl/FragmentLoaderCreator.java

[gwt-contrib] final methods in RemoteServiceServlet

2009-03-04 Thread koollx
We've been using GWT with Spring/Hibernate/GXT for over a year. Loving every day of it. I would like to start contributing to the project to remove little and big annoyances and to make it better overall. First little annoyance on the list - lots of final and private methods in

[gwt-contrib] Re: Four quick compiler code reviews -- trunk

2009-03-04 Thread Scott Blum
On Wed, Mar 4, 2009 at 9:58 AM, BobV b...@google.com wrote: On Tue, Mar 3, 2009 at 2:16 AM, Scott Blum sco...@google.com wrote: SourceGen: all this really does is make it so that when you click on a JsniMethodBody in the debugger, you can see the source. Is SourceGenerationVisitor

[gwt-contrib] [google-web-toolkit commit] r4918 - in trunk: dev/core/src/com/google/gwt/core/linker dev/core/src/com/google/gwt/dev/jjs/imp...

2009-03-04 Thread codesite-noreply
Author: sco...@google.com Date: Wed Mar 4 10:32:11 2009 New Revision: 4918 Modified: trunk/dev/core/src/com/google/gwt/core/linker/IFrameLinker.java trunk/dev/core/src/com/google/gwt/dev/jjs/impl/FragmentLoaderCreator.java

[gwt-contrib] [google-web-toolkit commit] r4920 - releases/1.6

2009-03-04 Thread codesite-noreply
Author: sco...@google.com Date: Wed Mar 4 10:55:58 2009 New Revision: 4920 Modified: releases/1.6/branch-info.txt Log: Recording 1.6 - trunk merge. Modified: releases/1.6/branch-info.txt == ---

[gwt-contrib] [google-web-toolkit commit] r4921 - in releases/1.6/user: src/com/google/gwt/dom/client test/com/google/gwt/dom/client

2009-03-04 Thread codesite-noreply
Author: jlaba...@google.com Date: Wed Mar 4 11:23:10 2009 New Revision: 4921 Modified: releases/1.6/user/src/com/google/gwt/dom/client/DOMImpl.java releases/1.6/user/src/com/google/gwt/dom/client/DOMImplIE6.java releases/1.6/user/src/com/google/gwt/dom/client/Element.java

[gwt-contrib] [google-web-toolkit commit] r4922 - in releases/1.6: doc user/src/com/google/gwt/debug/client user/src/com/google/gwt/user/cl...

2009-03-04 Thread codesite-noreply
Author: br...@google.com Date: Wed Mar 4 13:11:07 2009 New Revision: 4922 Modified: releases/1.6/doc/build.xml releases/1.6/user/src/com/google/gwt/debug/client/DebugInfo.java releases/1.6/user/src/com/google/gwt/user/client/ui/UIObject.java

[gwt-contrib] [google-web-toolkit commit] r4923 - in releases/1.6/user: src/com/google/gwt/debug/client test/com/google/gwt/debug/client te...

2009-03-04 Thread codesite-noreply
Author: br...@google.com Date: Wed Mar 4 13:18:20 2009 New Revision: 4923 Added: releases/1.6/user/src/com/google/gwt/debug/client/package-info.java releases/1.6/user/test/com/google/gwt/debug/client/DebugInfoTestDisabled.java

[gwt-contrib] [google-web-toolkit commit] r4924 - branches/snapshot-2009.03.03

2009-03-04 Thread codesite-noreply
Author: rj...@google.com Date: Wed Mar 4 13:41:01 2009 New Revision: 4924 Added: branches/snapshot-2009.03.03/ - copied from r4913, /trunk/ Log: Creates snapshot-2009.03.03 from tr...@4913 via svn copy https://google-web-toolkit.googlecode.com/svn/trunk -r4913

[gwt-contrib] [google-web-toolkit commit] r4926 - releases/1.6/user/src/com/google/gwt/user/client/ui

2009-03-04 Thread codesite-noreply
Author: br...@google.com Date: Wed Mar 4 13:57:08 2009 New Revision: 4926 Modified: releases/1.6/user/src/com/google/gwt/user/client/ui/ListBox.java Log: Closes '}' on @link tag in javadoc; had been causing a javadoc build warning. Review: none (doc) Modified:

  1   2   >