Getting Problem in adding Panel to the content Pane

2009-07-07 Thread BhaveshShah
Hi all, I have created one class HPanel extends HorizontalPanel now if I try to add this Panel to root panel I am getting this error... [ERROR] Line 33: No source code is available for type com.test.gui.VPanel1; did you forget to inherit a required module? Can anybody help me out for it?

How to remove the Horizontal scroll bar

2009-07-07 Thread jk
Hi, In IE i am getting an unwanted horizontal scroll bar in the scroll panel . If i use overflow-x: hidden !important; attribute, horizontal scroll goes permanently . It does not appears when required. How to remove the horizontal scroll bar from the scroll panel when the data is not lengthy ?

Re: Getting Problem in adding Panel to the content Pane

2009-07-07 Thread Dalla
You say that you have a class named HPanel, yet your error seems to reference a class named VPanel1. Are you sure you added a HPanel to the Root? On 7 Juli, 07:15, BhaveshShah dakbhav...@gmail.com wrote: Hi all, I have created one class HPanel extends HorizontalPanel now if I try to add

Re: CSS loads for 1 millisecond, then disappears

2009-07-07 Thread Dean S. Jones
CSS included in the HTML will likely be loaded -before- CSS from the GWT loader - hence the original posters dilemma/confusion. I put correct in quotes not as an absolute - just as a matter of convention, and relative surety of loading order. CSS targeted at -your- GWT components style classes

Re: dom manipulation works in IE but not in FF

2009-07-07 Thread bhomass
having some text nodes aren't so bad. the thing is after reading two text nodes, it does not see the table node at all. why should that be? for supplementary information, this is GWT 1.5.3 and I am talking about deployed mode. --~--~-~--~~~---~--~~ You received

om.google.gwt.user.client.rpc.IncompatibleRemoteServiceException: This application is out of date, please click the refresh button on your browser.

2009-07-07 Thread bhomass
suddenly I get this error on deployment. everything works fine running out of eclipse. it also says (Could not locate requested method 'registerProject(java.lang.String, java.lang.String)' in interface 'com.jcalc.webclient.client.RegisterProjectService' ). I checked out that interface, there is

Re: Best practice to implement Command Pattern RPC on server?

2009-07-07 Thread David Peterson
Hi Nathan, On Jul 7, 7:24 am, Nathan Wells nwwe...@gmail.com wrote: I think this is mostly directed at David, but if anyone has answers, I'd welcome them. In your command pattern implementation or somewhere on this thread (can't remember where I saw it) you mention that GWT doesn't properly

Re: Problem calling a RPC service in a inherited module

2009-07-07 Thread Marcel
Ok, I solved it. The servlet mapping was the problem. It has to be done in the web.xml of the project that inherits the module (in my case, the index project). Furthermore, the url-pattern does not include the module's project name, but the name of the project that inherits the module (in my

Re: client statefull server stateless

2009-07-07 Thread ytrewqsm
Thx a lot...i got a lot of information...i try now to process all of it. Still after first reading ,REST like application is based on url's and stuff How can that be applied to a GWT app which is based on RPC. This is like a one page applicationso ? On 7 Iul, 05:00, Dean S. Jones

Re: client statefull server stateless

2009-07-07 Thread Kwhit
I'm interested in Dean's comments on performance impact of session data which seems counter intuitive to me (not that I doubt you at all Dean, just want to understand!) 1/ The session is going to be stored anyway right. That's part of the contract with the client. I don't know what this equates

gwt-maven2-starter-app has been upgraded

2009-07-07 Thread Sam Brodkin
I'm pleased to announce that the gwt-maven2-starter-app has been upgraded for GWT 1.6.x: http://code.google.com/p/gwt-maven2-starter-app/ It has also been modified to use the codehaus gwt maven plugin (http:// mojo.codehaus.org/gwt-maven-plugin/). I welcome any feedback to help polish it up.

Re: problems with finding Actions

2009-07-07 Thread David Peterson
Yeah, thanks for the report. I've just been able to get back to plugging the library back into my own project and found the same problem. There was a bug in the ActionHandler linking code. I've checked in the fix to SVN and updated the SNAPSHOT download. Just download and replace your existing

GWT History Best Practices

2009-07-07 Thread Allahbaksh
Hi, Is there any best practices or design for implementing History in an application. Regards, Allahbaksh --~--~-~--~~~---~--~~ 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: client statefull server stateless

2009-07-07 Thread Thomas Broyer
On 7 juil, 10:20, Kwhit kwhitting...@gmail.com wrote: I'm interested in Dean's comments on performance impact of session data which seems counter intuitive to me (not that I doubt you at all Dean, just want to understand!) 1/ The session is going to be stored anyway right. That's part of

overview of SmartGWT EE

2009-07-07 Thread Sanjiv Jivan
Hi,The SmartClient folks have released SmartGWT EE, the enterprise version which is built over SmartGWT LGPL. I recently test drove it and have written a detailed overview of it covering the various features it supports :

Strange problem with disclosure panel and flex table

2009-07-07 Thread Ryan
Hello everybody, I recently noticed a very peculiar problem related to disclosure panels. I am creating a flex table. So the first row of the flex table contains the column headers. So I first create the column headers on row 0 of my flex table. I assign a specific width to each of the column

Re: Strange problem with disclosure panel and flex table

2009-07-07 Thread Ian Bambury
Yep. It's because widgets like disclosure panel, split panels - anything that moves really - all seem to delay attaching child widgets using a deferred command and so the flextable isn't attached when you get the height or width and is therefore 0. I think if something up the hierarchy has an

Re: client statefull server stateless

2009-07-07 Thread brett.wooldridge
GWT can support REST easily. See: http://code.google.com/webtoolkit/doc/1.6/DevGuideServerCommunication.html The section on Making HTTP Request should help. Personally, I opt for standard GWT RPC, but I'm a spoiled Java coder. -Brett On Jul 7, 5:18 pm, ytrewqsm ytrew...@gmail.com wrote:

Re: overview of SmartGWT EE

2009-07-07 Thread Jonathan Kushner
What is the current quote for a single developer license for EE, just out of curiosity? On Tue, Jul 7, 2009 at 6:38 AM, Sanjiv Jivan sanjiv.ji...@gmail.com wrote: Hi,The SmartClient folks have released SmartGWT EE, the enterprise version which is built over SmartGWT LGPL. I recently test drove

Re: overview of SmartGWT EE

2009-07-07 Thread Jonathan Kushner
Nevermind. I've found the information. Thanks. On Tue, Jul 7, 2009 at 8:06 AM, Jonathan Kushner jonkush...@gmail.comwrote: What is the current quote for a single developer license for EE, just out of curiosity? On Tue, Jul 7, 2009 at 6:38 AM, Sanjiv Jivan sanjiv.ji...@gmail.comwrote:

Re: client statefull server stateless

2009-07-07 Thread ytrewqsm
Thx ... but RPC REST is not possible. I prefer using RPC as well. On Jul 7, 2:50 pm, brett.wooldridge brett.wooldri...@gmail.com wrote: GWT can support REST easily. See: http://code.google.com/webtoolkit/doc/1.6/DevGuideServerCommunication... The section on Making HTTP Request should

Re: client statefull server stateless

2009-07-07 Thread Thomas Broyer
On 7 juil, 10:18, ytrewqsm ytrew...@gmail.com wrote: Thx a lot...i got a lot of information...i try now to process all of it. Still after first reading ,REST like application is based on url's and stuff How can that be applied to a GWT app which is based on RPC. This is like a one page

facebook not render in hosted mode

2009-07-07 Thread asianCoolz
protected Widget makeLoginButton() { String s = fb:login-button onlogin= \facebookConnectLogin()\/ fb:login-button; HTML h = new HTML(s); DeferredCommand.addCommand(new Command() { public void execute() {

Clover code coverage

2009-07-07 Thread Arthur Kalmenson
Hello everyone, We're currently using Clover for our code coverage tool and I've been wanting to get code coverage from GWTTestCases. We try to avoid using GWTTestCase and mainly focus on unit testing with TestNG, however, to ensure GIN injections work we need to use GWTTestCase. Has anyone

How to: create a web service

2009-07-07 Thread Eric
Greetings, I've been using the Google Web Toolkit for a while now and I'm at that point where I want to interface it with PHP so I can talk to a MySQL database. In the past, I've used a RequestBuilder object to get this information and that works okay. The code gets a little messy though by

Re: Google plugin for Eclipse 3.5 Galileo

2009-07-07 Thread Miguel Méndez
We are working on the release as we speak. It should be out shortly (weeks). On Mon, Jul 6, 2009 at 3:53 PM, P.G.Taboada pgtabo...@googlemail.comwrote: Hi, just wondering - I am just waiting for the release to rollout gwt 1.6 and the new ide on my project - how long do you think it will

Re: GWT module needs to be (re)compiled

2009-07-07 Thread Sam Brodkin
I had the same problem. I took the error message's advice and ran it in hosted mode, clicked compile/Browse, then i took the /war directory (or with maven maybe it's in src/main/webapp for you) and copied it to the deploy dir of jboss (tomcat). I renamed it war.war and started the server (put

External server and gwt.rpc

2009-07-07 Thread Andrey
Hello! GWT 1.6. When I run my application in hosted mode with embedded Jetty everything is OK. But when I use my own tomcat in -noserver mode I get the following problem: when I change some server-side classes which involve serialization the gwt.rpc file is recompiled and it brings a lot of

FF 3.5 + GWT 1.5.3 + Large App (script/stack errors)

2009-07-07 Thread JacoGr
Hi all, I'm not 100% sure how to address this, or who/where to log it, so I thought I'll start here... We are close to launching a new medium-sized application using GWT 1.5.3 + GXT 1.2.4. At this point the application is around 81,000 lines (61K of this is the actual web client, the remainder

Re: How to remove the Horizontal scroll bar

2009-07-07 Thread brett.wooldridge
overflow-x: auto !important; doesn't work? You might be running into this problem: http://remysharp.com/2008/01/21/fixing-ie-overflow-problem/ -Brett On Jul 7, 2:21 pm, jk jaikumarkasira...@gmail.com wrote: Hi, In IE i am getting an unwanted horizontal scroll bar in the scroll panel . If

Re: How to layer images

2009-07-07 Thread brett.wooldridge
Oh, and don't forget to set the z-index of the checkmark to be greater than the image it's over. Again, using either CSS (z-index) or programatically: checkImg.getElement().getStyle().setProperty(zIndex, 1000); On Jul 8, 12:30 am, brett.wooldridge brett.wooldri...@gmail.com wrote: Put the

Re: GWT maps, marker always disappears when clicked

2009-07-07 Thread Paul van Hoven
Hi Eric, thanks for the answer. Actually i have a clicklistener installed on the map. But i'm not shure if my code has the problem you described. I made a small demo that compares the behaviour of the normal js map vs the gwt map. The demo is a ready eclipse project which just needs to be

Re: Java + AppEngine + GWT + Whitelist

2009-07-07 Thread Paulo Coutinho
yeah, im doing the same, create a new frame, but on firebug apper this error: Permissão negada a http://www.prsolucoes.com para chamar o método Location.toString em http://brfotolog.appspot.com. But it open the page, but i want know if it is normal or have a method to solve it? 2009/7/7 Dean

Re: Java + AppEngine + GWT + Whitelist

2009-07-07 Thread Thomas Broyer
On 7 juil, 17:33, Paulo Coutinho pa...@prsolucoes.com wrote: yeah, im doing the same, create a new frame, but on firebug apper this error: Permissão negada a http://www.prsolucoes.com para chamar o método Location.toString em http://brfotolog.appspot.com. But it open the page, but i  want

Re: Horizontal tabs in a TabPanel

2009-07-07 Thread Fred Sauer
Bruce, Are you trying to support a RTL language? If so, the behavior should be automatic: http://gwt.google.com/samples/Showcase/Showcase.html?locale=ar Otherwise, you might be able to use a fake RTL attribute to quickly achieve the desired result. Haven't tried that myself though. Fred On

Re: Add class to SerializationPolicy

2009-07-07 Thread Fred Sauer
Andrey, As you know, GWT uses its own serialization mechanism: http://code.google.com/webtoolkit/tutorials/1.6/RPC.html#serialize How are you using your custom serializer(s)? Thanks Fred On Tue, Jun 30, 2009 at 2:42 AM, Andrey mino...@gmail.com wrote: Hello, everyone! How can I add a

Re: Ctrl + s keyboard event in GWT

2009-07-07 Thread Fred Sauer
http://code.google.com/webtoolkit/tutorials/1.6/manageevents.html On Tue, Jun 30, 2009 at 3:16 AM, Saeed Zarinfam zarinfa...@gmail.comwrote: Hi I want to add Ctrl + s or Ctrl + xxx short key to my GWT program. please guide me. thanks. -- Fred Sauer f...@allen-sauer.com

Re: Java + AppEngine + GWT + Whitelist

2009-07-07 Thread Paulo Coutinho
No, the only code that i have on the page that i open on frame is a SWfObject loading a flash animation, only. 2009/7/7 Thomas Broyer t.bro...@gmail.com: On 7 juil, 17:33, Paulo Coutinho pa...@prsolucoes.com wrote: yeah, im doing the same, create a new frame, but on firebug apper this

Re: Converting gwt project in Windows to Mac with eclipse gwt plugin

2009-07-07 Thread Rajeev Dayal
Hey Eric, See http://code.google.com/eclipse/docs/existingprojects.html Post back on this thread if you have any other questions. Rajeev On Tue, Jun 30, 2009 at 3:35 PM, EricM mibu...@gmail.com wrote: I am trying to convert a web-application project originally created in the following

Re: Big RPC and long running script error

2009-07-07 Thread Fred Sauer
John, RPC does try it's best to be fast, but each browser puts its own restrictions in place for long eval times, and these restrictions change over time. I'd let the user experience guide you. I'd try to start displaying results to the user as quickly as possible. The user can't absorb 10,000

Re: om.google.gwt.user.client.rpc.IncompatibleRemoteServiceException: This application is out of date, please click the refresh button on your browser.

2009-07-07 Thread Sean
When you deployed, did everything get overwritten that needed to? Maybe you forgot the WEB-INF folder or something? Every once in a while I delete everything off the server and recopy everything from my local just to avoid things like that. On Jul 7, 2:56 am, bhomass bhom...@gmail.com wrote:

Re: problems with finding Actions

2009-07-07 Thread Norman Maurer
I was just not sure if its a bug or if I'm to stupid ;) Thx, Norman Ps: could you please upload the new snapshot to your maven2 repos ? On Jul 7, 10:27 am, David Peterson da...@randombits.org wrote: Yeah, thanks for the report. I've just been able to get back to plugging the library back

GWT app won't work in Glassfish v2 :(

2009-07-07 Thread digitalsam007
I had followed the instructions given in the following post to make my GWT Module behave like a Dynamic Web Project in Eclipse. http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/39e0ff6325e4d504/55bfd342d77ec910#55bfd342d77ec910 I was successful in deploying the GWT Module

Re: overview of SmartGWT EE

2009-07-07 Thread Cristian Chiovari
I need that info too ...give me a link plz On Tue, Jul 7, 2009 at 3:14 PM, Jonathan Kushner jonkush...@gmail.comwrote: Nevermind. I've found the information. Thanks. On Tue, Jul 7, 2009 at 8:06 AM, Jonathan Kushner jonkush...@gmail.comwrote: What is the current quote for a single developer

Re: client statefull server stateless

2009-07-07 Thread Cristian Chiovari
For a finacial application ,which is not EBay or facebook i think resusing HTTP caching features has very low chances of being used since is not a common case and rarely it may happen to have that. On Tue, Jul 7, 2009 at 3:34 PM, Thomas Broyer t.bro...@gmail.com wrote: On 7 juil, 10:18,

Re: Making RPC calls to remote server in hosted mode

2009-07-07 Thread justin choi
it seems to result it this error: [ERROR] Invalid module name: 'http://site.com/..' But it works when I hit the URL on my browser... do I need to set up my Tomcat server differently? On Jul 6, 6:21 pm, Jason Essington jason.essing...@gmail.com wrote: it is simply

embed GWT in simple webpage

2009-07-07 Thread Arne Schroeder
Hi all, searching this group for embed I found several examples how to embed Flex/Flash/Webapplications into GWT, but no simple thing like embedding GWT widgets in a pure HTML page (maybe combined with extra javascript). I have just started using GWT. I built a very simple calculator widget from

Re: HorizontalSplitPanel with DecoratorPanel in Firefox: how?

2009-07-07 Thread Fred Sauer
Max, If you're using standards mode, height:100% get tricky. Can you try setting the height of the outer most container to a specific number of pixels, just as a test? Fred On Tue, Jun 30, 2009 at 4:44 PM, max3000 maxime.lar...@gmail.com wrote: I'm trying to surround a HSP (height: 100%) with

GWT and IE7, content will not refresh every time a page is loaded

2009-07-07 Thread irvingcg79
Hi, We have a webpage with GWT code in it, a simple panel to display an image and a canvas to draw on top of it. Some users have complained that the entire section is not being loaded sometimes when using IE7, and I'd like to know if someone has had the same problem. So far the only workaround

Re: Very urgent GWT deployment on Godaddy shared hosting. Very urgent

2009-07-07 Thread Fred Sauer
Sajil, It's often useful to wrap the methods in your servlet with a try/catch IForm service(IForm form) { try { // your real code goes here } catch(Throwable e) { // log 'e' so it can be found in the server logs } } Fred On Tue, Jun 30, 2009 at 11:00 PM, sajil

Re: pressing tab key some times goes out of modal window

2009-07-07 Thread Fred Sauer
Please add your vote to this issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=2707q=modal On Wed, Jul 1, 2009 at 12:35 AM, pepgrifell pepgrif...@gmail.com wrote: hi there, I have a modal window with some fields. After pressing tab key some times, it goes out of modal

Re: Excluding methods from GWT modules

2009-07-07 Thread Fred Sauer
Pandaman, Sure, by default only code in client/ is included by the GWT compiler and code in other directories (by convention server/ for example) is only made available on the server. In your module file you can override the default directory 'client' to be something else or you can include

Re: interactive map

2009-07-07 Thread Fred Sauer
Mitch, You're probably looking for the mouse click handler: http://code.google.com/webtoolkit/tutorials/1.6/manageevents.html Fred On Wed, Jul 1, 2009 at 3:31 PM, mitche...@gmail.com mitche...@gmail.comwrote: Hey guys, I am trying to create an interactive map interface... not unlike

Re: embed GWT in simple webpage

2009-07-07 Thread Ian Bambury
Hi, 'Embed' isn't actually going to find you the right info, unfortunately. Or at least, not much. What you need to know is how GWT works. For something like this, you need to have your GWT app add your Calc widget to a div in the html page. A simple way to do this is to put a div id=calc/div

Hosted mode non-starter: On Mac OS X, ensure that you have Safari 3 installed

2009-07-07 Thread eighty
Max OS X 10.5.7 Safari 4 64-bit Intel Core 2 Duo 32-bit Java 1.5 Eclipse 3.4.2 Google Plugin for Eclipse: http://dl.google.com/eclipse/plugin/3.4 GWT Trunk Revision 5683 compiled with 32-bit Java 1.5 Problem: Create a new web application project in Eclipse using the Google Plugin (with GWT

Re: Unable to instantiate ( using GWT RPC and tomcat 6)

2009-07-07 Thread Fred Sauer
Deepak, It looks like one of two things: 1. Static initialization problem on your servlet class. Since you appear to have no static initialization code, it's probably not that 2. The class is actually not found in the server's class path. Have you verified the package name? Fred On Thu, Jul 2,

Re: Setting a PopupPanel modal

2009-07-07 Thread Fred Sauer
Hez, Please vote by starring this issues: http://code.google.com/p/google-web-toolkit/issues/detail?id=2707can=1q=modal Fred On Thu, Jul 2, 2009 at 11:38 AM, hezjing hezj...@gmail.com wrote: Hi May I know how to make a PopupPanel modal? Below is my testing code: public void

Re: GWT Generator Permutation Handling

2009-07-07 Thread Fred Sauer
Oldtimer, Can you use inheritence in the generated classes? Fred On Sat, Jul 4, 2009 at 5:44 AM, Oldtimer colinzhao...@yahoo.com wrote: Hi, I am working on a generator class to generate a factory class to create beans (GWT Composite classes) with configuration meta data in the Spring xml

Re: GWT 1.6 structure

2009-07-07 Thread Fred Sauer
I hope this helps: http://code.google.com/eclipse/docs/existingprojects.html Fred On Fri, Jul 3, 2009 at 4:58 AM, magon mago...@gmail.com wrote: using GWT 1.6 with eclipse plugin before this version the gwt-project file structure had a public folder, where i put all my resources, and

Re: GWT: Edit CSS Attributes

2009-07-07 Thread Adam T
Something like the following should work: Image img = new Image(SomeImage.png); img.getElement().setPropertyString(left, 100px); //Adam On 7 Juli, 14:12, stephan17 stephanbe...@gmx.at wrote: Hi, In GWT i have an image and I want to edit a css

Re: GWT Best Practices doubt

2009-07-07 Thread Fred Sauer
Geraldo, This dispatching method is independent of the signature of the implementation. Your caching service class execute method can look like this: public T extends Response void execute(ActionT action, final AsyncCallbackT cb) { realService.execute(action, new AsyncCallbackT() {

Re: Text Area fixed with.

2009-07-07 Thread Fred Sauer
Kisll, Safari, and other browsers may allow text areas to be resized outside of the control of the web application. It's generally a good idea to allow your application to be flexible. Different browsers/platforms/operating systems and environments (fonts, etc.), zoom may cause slightly different

Re: changing marker color

2009-07-07 Thread Fred Sauer
I'd recommend the Maps documentation: http://code.google.com/apis/maps/ On Mon, Jul 6, 2009 at 9:30 AM, Piotr Kirklewski pkirklew...@gabaedevelopment.com wrote: I should also say that I'm playing around with GWT maps. The default marker color is red I need to change it to blue but cant

Re: WindowClosingHandler

2009-07-07 Thread Fred Sauer
NeMe, Try Window.addWindowClosingHandler() and Window.addCloseHandler() Fred On Mon, Jul 6, 2009 at 12:41 AM, NeMeSiS m.weish...@web.de wrote: Hello? Can anyone answer me please? On 1 Jul., 12:23, NeMeSiS m.weish...@web.de wrote: Hi all, I have a problem because the

Re: document.write

2009-07-07 Thread Fred Sauer
giovaneoceano, By default GWT is loaded in an IFRAME so that 'document' refers to the IFRAME, You may want to use '$doc' instead of document, although document.write() is unlikely to be what you want. Fred On Mon, Jul 6, 2009 at 6:29 AM, giovaneoce...@hotmail.com giovaneoce...@hotmail.com

Re: GWT 1.6 structure

2009-07-07 Thread Paulo Coutinho
I have a question about structure: i have a war folder like this: war/ index.html images image1.png image2.png ... css structure.css jquery.css js jquery.js jquery.plugin.js swf player.swf WEB-INF/

[OFF-TOPIC] My appengine application - test please

2009-07-07 Thread Paulo Coutinho
Hi ppl, I finish my RC1 version of my appengine version, who have a webcam can test to me please? http://brfotolog.appspot.com/ -- Atenciosamente, Paulo Coutinho. Blog: www.prsolucoes.com/blog Site: www.prsolucoes.com Msn: pa...@prsolucoes.com

Re: gwt-maven2-starter-app has been upgraded

2009-07-07 Thread Charlie Collins
Nice work Sam. I will try to dig into it more when I get a chance, but at first glance it looks very good - thanks for putting this together. On Jul 7, 4:25 am, Sam Brodkin sambrod...@gmail.com wrote: I'm pleased to announce that the gwt-maven2-starter-app has been upgraded for GWT

Re: GWT 1.6 structure

2009-07-07 Thread Fred Sauer
Paulo, Placing those files under war/ will make them accessible to your web application as static files. I think this is what you want. You can also use ClientBundle to grab resources at compile time from the Java classpath. This is possible in GWT 2.0 (trunk), but not in GWT 1.6. Fred On Tue,

GWT - Bug on frame setUrl on IE

2009-07-07 Thread Paulo Coutinho
Hi, I have a problem that i think is a bug: On firefox all is ok, but on internet explorer i cant change the frame URL. Im using it: frame.setUrl(http://www.prsolucoes.com/;); box.center(); box.show(); frame = the iframe control box = is a DialogBox that frame is in -- Atenciosamente,

Re: Requestbuilder problems, would appreciate at least a short response

2009-07-07 Thread Amitabh
Is there anything else I can try ? I'm running out of options. On Jul 6, 1:31 pm, Ian Bambury ianbamb...@gmail.com wrote: Hi, Have you got the line requestBuilder.setHeader(Content-Type, application/x-www-form-urlencoded); in there somewhere? Ian http://examples.roughian.com

Re: overview of SmartGWT EE

2009-07-07 Thread Jonathan Kushner
I couldn't locate the actual price, however the Pro Edition for Client/GWT is almost $800/developer license, which is well over my budget. The product is excellent, just a bit more than needed for our environment. Good luck. https://www.isomorphic.com/product/buyNow.jsp?pro=10 On Tue, Jul 7,

GWT Mosaic in AppEngine

2009-07-07 Thread Paulo Coutinho
Hi, Is possible to use gwt-mosaic on appengine? link: http://code.google.com/p/gwt-mosaic/ -- Atenciosamente, Paulo Coutinho. Blog: www.prsolucoes.com/blog Site: www.prsolucoes.com Msn: pa...@prsolucoes.com --~--~-~--~~~---~--~~ You received this message

Custombutton with a background image and foreground text

2009-07-07 Thread Amitabh
Has anyone tried to have a custombutton with a background image and foreground text WITHOUT using the .addStyleName or .setStyleName methods ? I'm using GWT 1.6.4 with IE 7 and I found that I can either set the image or the text but cannot have both. So I've been playing around with the button's

Re: GWT Mosaic in AppEngine

2009-07-07 Thread Alejandro D. Garin
yes! why not? On Tue, Jul 7, 2009 at 6:42 PM, Paulo Coutinho pa...@prsolucoes.com wrote: Hi, Is possible to use gwt-mosaic on appengine? link: http://code.google.com/p/gwt-mosaic/ -- Atenciosamente, Paulo Coutinho. Blog: www.prsolucoes.com/blog Site: www.prsolucoes.com Msn:

Initial release of GWT-cs, GWT application construction with Spring

2009-07-07 Thread colin.zhao
I am pleased to announce the initial release of GWT-cs, which allows you to use Springframework's bean configuration xml file to define GWT client side application structure. It leverages GWT generator API and Spring BeanFactory API, and so the module itself is tiny. My intention is to

mousePressed

2009-07-07 Thread Memo Sanchez
Hello, I am developing an application that requires that the user hold down the button for a while and then the scrollBar (a special scrollBar) will scroll to the right until the user release the button of the mouse.. but i don't know how I can do this :S... I was trying to use the MouseListeners

Re: Initial release of GWT-cs, GWT application construction with Spring

2009-07-07 Thread Rakesh
do you have an example some where that will explain its use??? Thanks, Rakesh Wagh On Jul 7, 7:22 pm, colin.zhao colinzhao...@yahoo.com wrote: I am pleased to announce the initial release of GWT-cs, which allows you to use Springframework's bean configuration xml file to define GWT client

Re: How to layer images

2009-07-07 Thread zorro2b
Thanks. Works like a charm. Only question I have now is how do I manage clickHandlers for these images? It seems that I must have a clickHandler registered for the front most visible image or no click is detected. I tried using a transparent image with a high z index so it would always be in

Re: Hosted mode non-starter: On Mac OS X, ensure that you have Safari 3 installed

2009-07-07 Thread eighty
Problem solved: http://groups.google.com/group/Google-Web-Toolkit-Contributors/browse_thread/thread/66ddffbb3ccf98f9 On Jul 7, 11:01 am, eighty eightyste...@gmail.com wrote: Max OS X 10.5.7Safari4 64-bit Intel Core 2 Duo 32-bit Java 1.5 Eclipse 3.4.2 Google Plugin for

Re: GWT and IE7, content will not refresh every time a page is loaded

2009-07-07 Thread brett.wooldridge
I don't have the same problem, but can ask some questions and offer a suggestion. I assume you have a DIV in the page, and that your entry point code injects the GWT view into that DIV, correct? Where is your script tag located that injects kicks off the GWT load? I would suggest putting it at

Re: How to layer images

2009-07-07 Thread brett.wooldridge
I have a similar setup in my app -- an image with a mouse-over handler that causes a small control panel to appear layered over one corner of the image. In my case, the primary image occupies the full AbsolutePanel it resides in, so I sink events from that panel. To be truthful, because I

[gwt-contrib] Re: IE8 disappearing history

2009-07-07 Thread Joel Webber
Changing IFrameTemplate to do a location.replace on the iframe probably made a difference because it loaded the compiled script normally, rather than through xhr/doc.write. But there are other problems with this -- though it shouldn't fetch the compiled script twice, it effectively loads it twice,

[gwt-contrib] [google-web-toolkit commit] r5683 - Assign a precendence to JsNameOf AST nodes.

2009-07-07 Thread codesite-noreply
Author: b...@google.com Date: Tue Jul 7 06:46:18 2009 New Revision: 5683 Modified: trunk/dev/core/src/com/google/gwt/dev/js/JsPrecedenceVisitor.java Log: Assign a precendence to JsNameOf AST nodes. Should fix draftCompile RPCSuite test failures. Patch by: bobv Review by: rjrjr (desk)

[gwt-contrib] Re: Moving PagingScrollTable Friends to Trunk

2009-07-07 Thread jay
bump. Anything? On Jun 24, 10:31 am, jay jay.gin...@gmail.com wrote: Just curious if the effort has been resumed? Regardless, is there anyway for you to commit what you do have somewhere we could look and provide feedback? thanks, jay On Jun 10, 8:28 am, John LaBanca jlaba...@google.com

[gwt-contrib] Re: Comment on CodeSplitting in google-web-toolkit

2009-07-07 Thread brett.wooldridge
Ah, yes, I understand the larger issue(s) now. I wasn't thinking about all of the name-munging issues that would arise between separately compiled modules. Having been to DLL hell and back in my career, I have no interest in returning. -Brett On Jul 7, 7:33 am, codesite-nore...@google.com

[gwt-contrib] Safari 4 Support

2009-07-07 Thread brett.wooldridge
I was curious about what the state of the OOPHM browser integration for Safari 4 is? Is the browser plugin part of the trunk source? I didn't see it on a cursory browse through the filesystem. Thanks for any update you can provide. -Brett --~--~-~--~~~---~--~~

[gwt-contrib] Re: IE8 disappearing history

2009-07-07 Thread Amir Kashani
Opened issue 3808 and attached a patch to it that reverts the change and fixes the issue for me. It's interesting you mentioned IE6/7. I didn't test them as thoroughly as IE8, but I did notice a HUGE added delay in newToken calls at one point, in the range of 10-20 seconds. I'm not sure if this

[gwt-contrib] Re: IE8 disappearing history

2009-07-07 Thread Joel Webber
On Tue, Jul 7, 2009 at 1:40 PM, Amir Kashani amirkash...@gmail.com wrote: Opened issue 3808 and attached a patch to it that reverts the change and fixes the issue for me. It's interesting you mentioned IE6/7. I didn't test them as thoroughly as IE8, but I did notice a HUGE added delay in

[gwt-contrib] Re: Safari 4 Support

2009-07-07 Thread Joel Webber
I've been using it on my Mac with Safari 4 for some time now without problems. You can download the compiled plugin from this page: http://code.google.com/p/google-web-toolkit/wiki/UsingOOPHM (I think there's still some debate about where the source should go, but I suspect it to land in trunk

[gwt-contrib] [google-web-toolkit commit] r5684 - Edited wiki page through web user interface.

2009-07-07 Thread codesite-noreply
Author: j...@google.com Date: Tue Jul 7 11:40:09 2009 New Revision: 5684 Modified: wiki/UsingOOPHM.wiki Log: Edited wiki page through web user interface. Modified: wiki/UsingOOPHM.wiki == --- wiki/UsingOOPHM.wiki

[gwt-contrib] Re: IE8 disappearing history

2009-07-07 Thread Joel Webber
Yup, the XHR-based IFrameTemplate seems to have been causing the HUGE delay you and I were both seeing when setting the url #hash for History.newItem(). I'm afraid I'm going to have to revert back to the more-poorly-parallelized version of the selection script to get this fixed (at least for now).

[gwt-contrib] Re: IE8 disappearing history

2009-07-07 Thread Joel Webber
FWIW, I also dug into it in windbg, and it appears that the compiled script was getting serialized as part of IE's fast-back functionality, probably as a consequence of the fact that the script elements were created via doc.write rather than being fetched through the browser's normal mechanism.

[gwt-contrib] Re: IE8 disappearing history

2009-07-07 Thread Amir Kashani
I have mixed emotions about this: glad I was right in my conclusion but the loss of parallelization is a bummer. For a while there, I assumed you wrote me off as an insane man ;-) Thanks. - Amir On Tue, Jul 7, 2009 at 1:11 PM, Joel Webber j...@google.com wrote: FWIW, I also dug into it in

[gwt-contrib] Re: IE8 disappearing history

2009-07-07 Thread James Robinson
Oh, poop. That's both entirely logical and completely insane. - James On Tue, Jul 7, 2009 at 4:11 PM, Joel Webber j...@google.com wrote: FWIW, I also dug into it in windbg, and it appears that the compiled script was getting serialized as part of IE's fast-back functionality, probably as a

[gwt-contrib] [google-web-toolkit commit] r5686 - Fix for Issue #3796, syntax error due to inlining of numeric literal into jsni function...

2009-07-07 Thread codesite-noreply
Author: cromwellian Date: Tue Jul 7 13:08:53 2009 New Revision: 5686 Modified: trunk/dev/core/src/com/google/gwt/dev/js/JsToStringGenerationVisitor.java trunk/dev/core/test/com/google/gwt/dev/js/JsToStringGenerationVisitorAccuracyTest.java Log: Fix for Issue #3796, syntax error due

[gwt-contrib] Re: support for internationalized svninfo

2009-07-07 Thread Scott Blum
I keep getting 500's, but basically LGTM. Though the nested if stuff is a bit torturous to follow. :) On Tue, Jul 7, 2009 at 6:14 PM, fabb...@google.com wrote: Reviewers: scottb, chassande_gmail.com, Description: This is in response to Sebastien's complaint of 1jul09, that trunk didn't

[gwt-contrib] Re: support for internationalized svninfo

2009-07-07 Thread John Tamplin
On Tue, Jul 7, 2009 at 6:14 PM, fabb...@google.com wrote: 2. Change the regexps to be word-neutral, so that they don't care about the language of the tags, just the shape of the values. This trades a language sensitivity for a positional one. Note that some locales may

[gwt-contrib] Issue with trunk where hosted mode is a non-starter: On Mac OS X, ensure that you have Safari 3 installed

2009-07-07 Thread eighty
I'm having a strange issue with trunk (r5687, compiled with 32-bit Java 1.5) where hosted mode (launched from Eclipse 3.4 with 32-bit Java 1.5 via the Google Plugin) won't start on Mac OS X 10.5.7 (Intel Core 2 Duo 64-bit machine) with Safari 4.0.1 installed. Instead, the console displays the

[gwt-contrib] Re: support for internationalized svninfo

2009-07-07 Thread Freeland Abbott
Yes, and this sort of thing makes me nervous. If we assume line separation and no-space URL presentation, we can get the URL root and branch bits by looking for URLs without watching for any tags, and assigning the one ending in /svn to root. I don't see a way to do the revision, though. Which

  1   2   >