Re: wctomb equivalent in gwt framework ?

2008-09-10 Thread Rohit
On Sep 6, 11:15 am, Folke <[EMAIL PROTECTED]> wrote: > On Sep 5, 3:03 pm, Rohit <[EMAIL PROTECTED]> wrote: > > > > Personally, I think you should let your webserver escape und unescape > > > the \0 bytes before handing the data to your back-end application. > > > This would make your device more

need to change relative path to absolute path

2008-09-10 Thread ArunDhaJ
Hi All, I'm using GWTv1.5.0. Actually I'm using gwt as an UI integrating with a third party framework. I need to change all the relative references for the resources to an absolute reference. Like the reference to Standard.css is relatively refered as /gwt/standard/standard.css, i need to add my h

Re: New to Gwt

2008-09-10 Thread Gaurav
Thanks alot!!! I am starting GWT with netbeans 6.1. Is there any GUI desiner available for netbeans On Sun, Sep 7, 2008 at 4:32 AM, Folke <[EMAIL PROTECTED]> wrote: > > On Sep 6, 1:33 pm, gaurav <[EMAIL PROTECTED]> wrote: > > Is Ajax mandatory to know GWT? > > No, not really. But having a funda

Re: Composite Widgets and Click Events

2008-09-10 Thread Folke
You need to sink the event type (Event.ONCLICK) to the Composite widget's element. Imagine how "fast" you app would be if onBrowserEvent was called on any event like mouse move. On Sep 11, 1:31 am, "Gerwood Stewart" <[EMAIL PROTECTED]> wrote: > Do composite widgets like excepting click events? >

Re: Problem with apache <- ajp -> tomcat

2008-09-10 Thread Folke
On Sep 10, 10:41 pm, Simon Eichenauer <[EMAIL PROTECTED]> wrote: > Yes, I do, why? Because I think you have a serialization problem. The *.rpc files are needed for serialization and must be reachable by your servlets. Make sure that the webapp's directory structure matches the one in Apache's web

Re: Event Bubbling and GWT

2008-09-10 Thread Folke
Yes, check out these methods: DOM.eventCancelBubble() http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/client/DOM.html#eventCancelBubble(com.google.gwt.user.client.Event,%20boolean) or Event.cancelBubble() http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/g

Re: Using RPC for SQL

2008-09-10 Thread Ian Petersen
On Wed, Sep 10, 2008 at 7:09 PM, Kevin <[EMAIL PROTECTED]> wrote: > These two errors appear in the error log. > > [ERROR] Unable to load module entry point class > com.packtpub.eise.threatboard.client.ThreatBoard (see associated > exception for details) > [ERROR] Failure to load module > 'com.pack

Event Bubbling and GWT

2008-09-10 Thread Gerwood Stewart
Does GWT allow control of event Bubbling. A composite widget I'm playing with at the moment has to click events. One on an inner widget and a 'default' event for the rest of the widget. I don't want the 'default' event to trigger if the inner widget is clicked on. Does anyone have any experience w

Composite Widgets and Click Events

2008-09-10 Thread Gerwood Stewart
Do composite widgets like excepting click events? I've tried making a basic composite widget with a HorizontalPanel as the initWidget. I've added SourceClickEvents and created the functions and overriden onBrowserEvent. It appears onBrowserEvent is never getting triggered. Is there any basic rea

RichTextArea.wordWrap = true;?

2008-09-10 Thread ALF
Is there any way to set word wrapping on a RichTextArea? I found the HasWordWrap interface in the com.google.gwt.user.client.ui package but RichTextArea doesn't implement it. With that interface you should be able to getWordWrap() and setWordWrap(). Classes that implement HasWordWrap: Anchor,

Re: Using RPC for SQL

2008-09-10 Thread Kevin
These two errors appear in the error log. [ERROR] Unable to load module entry point class com.packtpub.eise.threatboard.client.ThreatBoard (see associated exception for details) [ERROR] Failure to load module 'com.packtpub.eise.threatboard.ThreatBoard' Again, I appreciate your help. On Sep 10,

Re: Using RPC for SQL

2008-09-10 Thread Ian Petersen
On Wed, Sep 10, 2008 at 6:55 PM, Kevin <[EMAIL PROTECTED]> wrote: > So, these methods should be valid then: Yeah, your code looks fine, although I admit I've not studied it intensely. > I'm getting this error, Unable to load module entry point class > com.packtpub.eise.threatboard.client.Threat

Re: Multi project setup i.e. dependent projects

2008-09-10 Thread Ian Bambury
1) You can have images and css in there and the product project can use themImage i = new Image("img/my.png"); where my.png is in the jar 2) The product project would have (be) one module - just an ordinary GWT project - one *.gwt.xml file, and probably only one entry point unless you need a numbe

Re: Any ideas on how to make a popup stay on top?

2008-09-10 Thread Ian Bambury
I can't get it *not* to stay on top --~--~-~--~~~---~--~~ 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,

Re: Default filename in FileUpload?

2008-09-10 Thread Gerwood Stewart
I wasn't aware that browsers did support it. If you set a value the browsers will wipe it out. Things could have changed... On Wed, Sep 10, 2008 at 11:00 AM, JohnnyGWT <[EMAIL PROTECTED]> wrote: > > I realize you're not usually allowed to provide a default filename in > FileUpload, and that brows

Re: Using RPC for SQL

2008-09-10 Thread Kevin
So, these methods should be valid then: table.loadFromSQL(new AsyncCallback() { public void onSuccess(Object result) { Vector vv = (Vector) result; int k =0; int n

RPC Bug

2008-09-10 Thread Kevin
Hi, I have two methods, Object loadFromSQL() and void loadFromTable(Object v). I call them through RPC's since GWT can't access SQL databases. On the server side, loadFromSQL stores all the values in the database, and returns them as an Object. On the client side, I call loadFromSQL via RPC. If

Re: Problem with apache <- ajp -> tomcat

2008-09-10 Thread Jason Essington
I have Apache -> ajp -> tomcat (JBoss actually) configured on one of my servers and am having no problem with it at all ... maybe you could define "Just Doesn't Work" a little better for us -jason On Sep 10, 2008, at 8:26 AM, Simon Eichenauer wrote: > > Hi, > > I have a GWT application that

Re: Alternative to Image Bundles?

2008-09-10 Thread Kevin
The images displayed using java standalone, but they did not display in javascript when I deployed to Tomcat. Thanks for the tip though. Any other suggestions? On Sep 10, 6:24 pm, Chris Chen <[EMAIL PROTECTED]> wrote: > Try > > GWT.getModuleBaseURL() + "img/image1_up.jpg" > > This URL should wo

Re: Alternative to Image Bundles?

2008-09-10 Thread Chris Chen
Try GWT.getModuleBaseURL() + "img/image1_up.jpg" This URL should work properly in hosted and web mode. -Chris On Sep 10, 2008, at 2:06 PM, Kevin wrote: > > Well, when I run in java mode, the images appear as expected, but in > javascript mode only the image specified in my HTML displays. > >

Re: Multi project setup i.e. dependent projects

2008-09-10 Thread marcelstoer
On Sep 10, 11:54 pm, "Ian Bambury" <[EMAIL PROTECTED]> wrote: > I'm not absolutely sure what you're after. Most applications will be one > project and one module. If you have some common code you'd probably develop > it as a standalone project in its own right (a framework or a set of > utilities,

Re: is communication over GWT-RPC secure

2008-09-10 Thread harimack
Thomas, Charlie, thanks much for the details and pointers. I agree keeping sign-in and signup separate from GWT app is a good approach, thanks for the suggestion. also, i tried this approcah today, if i switch on HTTPS/SSL on my Jboss server which i am using to deploy my gwt app ( and turnoff h

Re: Using RPC for SQL

2008-09-10 Thread Ian Petersen
On Wed, Sep 10, 2008 at 4:56 PM, Kevin <[EMAIL PROTECTED]> wrote: > "For the same reason, asynchronous methods do not have return types; > they must always return void." > > So, to use a method with an RPC, am I just doing the following? I think the problem you're having is that you expect a meth

Re: Using RPC for SQL

2008-09-10 Thread Kevin
So, on the client side, getMyVector takes in "Vector result." Once I get this input I can update my table and sucessfully load from the database. How do I get this input? That's my main struggle - the client's supposed to talk to the database via an RPC, however I don't know how to get "Vector re

Re: How to add the same Widget several times into one Panel

2008-09-10 Thread Ian Petersen
2008/9/10 kaspar.ru <[EMAIL PROTECTED]>: > it seems inconvenient. I suppose you could look at it that way, but the fact remains that widgets must be rendered by modifying the DOM, the DOM is a tree, and trees can't contain nodes with more than one parent. It doesn't really have anything to do wi

Re: Multi project setup i.e. dependent projects

2008-09-10 Thread Ian Bambury
I'm not absolutely sure what you're after. Most applications will be one project and one module. If you have some common code you'd probably develop it as a standalone project in its own right (a framework or a set of utilities, say). I'm a bit vague as to what you are trying to achieve, and why y

Re: gwt-google-apis Maps: distinguishing whether a MapClickEvent is over an InfoWindow

2008-09-10 Thread Nevin Freeman
Will do. Thanks for the info. Nevin On Sep 10, 1:55 pm, "Eric Ayers" <[EMAIL PROTECTED]> wrote: > GInfoWindow is supposed to be an Overlay and returned from > event.getOverlay(), but don't count on it working because gwt-maps doesn't > implement InfoWindow as a subclass of Overlay. > > Could you

Re: Multi project setup i.e. dependent projects

2008-09-10 Thread marcelstoer
On Sep 10, 12:12 am, marcelstoer <[EMAIL PROTECTED]> wrote: > What's the most sensible way to create a multi project setup? I'd have > a parent project with two modules and a number of child projects > dependent on the parent project. Each of those child projects also > provides two modules which

Re: Using RPC for SQL

2008-09-10 Thread Jeremiah Elliott
well, you should have three files - 1 tableService.java this is an interface that extends RemoteService. the methods here can return anything you want - for instance public Vector getMyVector(Vector input); // just an example - I dont' know how your app works 2 tableServiceAsync.java int

Re: How to add the same Widget several times into one Panel

2008-09-10 Thread kaspar.ru
it seems inconvenient. In this case I've to synchronize the state between them On 11 сент, 01:10, "Ian Petersen" <[EMAIL PROTECTED]> wrote: > On Wed, Sep 10, 2008 at 5:04 PM, kaspar.ru <[EMAIL PROTECTED]> wrote: > > Or I should create two objects > > of this navigation control . > > Yes. --~--~--

Re: Using RPC for SQL

2008-09-10 Thread elliot
dont know if what youre doing makes sense. assuming that it does, here is an example- === CLIENT {gwt code} === public interface MyService{ public List getTable(); public void setTable(List rows); } public interface MyServiceAsync{

Re: How to add the same Widget several times into one Panel

2008-09-10 Thread Ian Petersen
On Wed, Sep 10, 2008 at 5:04 PM, kaspar.ru <[EMAIL PROTECTED]> wrote: > Or I should create two objects > of this navigation control . Yes. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.

Re: Alternative to Image Bundles?

2008-09-10 Thread Kevin
Well, when I run in java mode, the images appear as expected, but in javascript mode only the image specified in my HTML displays. Perhaps I need to change the directory to anticipate it being saved in {Tomcat}/webapps/GUI.war/img? That is, the relative path would work in javascript mode, but no

How to add the same Widget several times into one Panel

2008-09-10 Thread kaspar.ru
Hello ! I'd like to add the same navigation control into top and bottom of the Panel but when I try to add this control second time removefromparent is called. Is there any way to do this? Or I should create two objects of this navigation control . Thanks a lot --~--~-~--~~--

Re: Using RPC for SQL

2008-09-10 Thread Kevin
The following text is what I got from GWT's RCP notes, "For the same reason, asynchronous methods do not have return types; they must always return void." So, to use a method with an RPC, am I just doing the following? in .../client/table.java public void Request() /* Makes RPC */ { ta

Re: gwt-google-apis Maps: distinguishing whether a MapClickEvent is over an InfoWindow

2008-09-10 Thread Eric Ayers
GInfoWindow is supposed to be an Overlay and returned from event.getOverlay(), but don't count on it working because gwt-maps doesn't implement InfoWindow as a subclass of Overlay. Could you please add this as an issue on http://code.google.com/p/gwt-google-apis? On Wed, Sep 10, 2008 at 3:21 PM,

Re: Using RPC for SQL

2008-09-10 Thread Jeremiah Elliott
Why make the rpc return void? Just have it return your collection. On Wed, Sep 10, 2008 at 3:17 PM, Kevin <[EMAIL PROTECTED]> wrote: > > Hi, > > I created a GWT FlexTable, "table", and a SQL database, "database". > The table adds a row of editable cells and removes a specified row. I > wrote two

Re: Problem with apache <- ajp -> tomcat

2008-09-10 Thread Simon Eichenauer
Yes, I do, why? By the way, I never realized they were there. As I said, one of the rpc calls, the one with the boolean value, works. On 10 Sep., 21:17, Folke <[EMAIL PROTECTED]> wrote: > Do you have the *.rpc files in the webapp's directory? > > On Sep 10, 4:26 pm, Simon Eichenauer <[EMAIL PR

Re: Copying text between two RichTextBox[es] loses its formatting

2008-09-10 Thread ALF
That did the trick thank you! rtb1.setHTML(rtb2.getHTML()); On Sep 10, 10:14 am, "Ian Bambury" <[EMAIL PROTECTED]> wrote: > If you transfer the HTML, does that not work? > > If you transfer the text, you're going to get text at the other end. > > 2008/9/10 ALF <[EMAIL PROTECTED]> > > > > > fin

Using RPC for SQL

2008-09-10 Thread Kevin
Hi, I created a GWT FlexTable, "table", and a SQL database, "database". The table adds a row of editable cells and removes a specified row. I wrote two functions: loadFromSQL and loadFromTable. The first copies what's in the database to the table. The latter copies what's in the table to the data

Re: How to catch mouse events on the Tree?

2008-09-10 Thread gwt_user
I forgot to mention that I am using GWT 1.5.2. --~--~-~--~~~---~--~~ 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 t

gwt-google-apis Maps: distinguishing whether a MapClickEvent is over an InfoWindow

2008-09-10 Thread Nevin Freeman
I would like my MapClickHandler's code to only execute if the click is not over an InfoWindow. As far as I can tell, there is not straightforward way to do this. I would like to do something like: map.addMapClickHandler(new MapClickHandler() { public void onClick(MapClickE

Re: Problem with apache <- ajp -> tomcat

2008-09-10 Thread Folke
Do you have the *.rpc files in the webapp's directory? On Sep 10, 4:26 pm, Simon Eichenauer <[EMAIL PROTECTED]> wrote: > Hi, > > I have a GWT application that is working fine when it can connect > directly to tomcat. > Now I wanted to put tomcat behind apache. I configured apache so that > it se

Re: Any ideas on how to make a popup stay on top?

2008-09-10 Thread Ian Bambury
Got any demo code? I don't mind having a play. What version of IE? 2008/9/10 darkflame <[EMAIL PROTECTED]> > > Anyone? Any ideas on why my workaround isnt working? Or can suggest a > better one? > > On Sep 2, 11:31 pm, darkflame <[EMAIL PROTECTED]> wrote: > > Yes, so I discovered, thats why I n

Re: How to deploy gwt client and gwt server on seperate machine

2008-09-10 Thread Folke
GWT 1.5: Add the cross-site linker to your module XML and deploy the GWT files, images, stylesheets and other scripts to the Lighttpd machine. ... ... Replace the module's URL in your HTML page with the full URL of your GWT module on the lighttpd machine and deploy the page toget

creating hover over panels

2008-09-10 Thread neversaydie
Hello, I need a help on creating hover over panels on onmouseover event. Can anyone help me how to do this ? thank you --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this g

Re: Any ideas on how to make a popup stay on top?

2008-09-10 Thread darkflame
Anyone? Any ideas on why my workaround isnt working? Or can suggest a better one? On Sep 2, 11:31 pm, darkflame <[EMAIL PROTECTED]> wrote: > Yes, so I discovered, thats why I need a workaround ;) > > On Sep 3, 12:20 am, Thomas Broyer <[EMAIL PROTECTED]> wrote: > > > > > On 2 sep, 23:12, darkflame

Re: Need to get images original dimensions before displaying.

2008-09-10 Thread Thomas Wrobel
Thanks for your help, that worked a treat! 2008/9/3 Reinier Zwitserloot <[EMAIL PROTECTED]>: > > Use onLoad, but also start a timer, and check after 10 seconds. If the > image has dimensions that aren't 0x0, remove the onload trigger, and > do the resize. > > On Sep 2, 4:00 pm, darkflame <[EMAIL

Re: RPC with Collections and generics

2008-09-10 Thread Folke
Final fields are ignored by the RPC code generator, but you should have gotten a warning that this field isn't marked transient. On Sep 10, 5:39 pm, Eugen Paraschiv <[EMAIL PROTECTED]> wrote: > Thanks a bunch. It's working now. I did try that at some point, but it > didn't work. I just though th

Re: How updated the translated JavaScript needs to be on the server to be debugged with -noserver in hosted mode?

2008-09-10 Thread Isaac Truett
You don't have to recompile client code and deploy to the server when using hosted mode. You can just refresh the hosted mode browser to see client changes. Server changes, of course, have to be compiled and deployed in order to show up (excluding possible, although unreliable, IDE hot-swapping).

Re: java.lang.VerifyError with gwt 1.5

2008-09-10 Thread MikeTheQuick
The problem was a conflicy between the old gwt Rocket library and the new gwt 1.5 I downloaded the new version of Rocket library and now it's all ok :) On 10 Set, 17:15, MikeTheQuick <[EMAIL PROTECTED]> wrote: > I tried to clean and rebuild the project, but nothing changed... i > have th

Re: Copying text between two RichTextBox[es] loses its formatting

2008-09-10 Thread Ian Bambury
If you transfer the HTML, does that not work? If you transfer the text, you're going to get text at the other end. 2008/9/10 ALF <[EMAIL PROTECTED]> > > final RichTextArea rtb1 = new RichTextArea(); > final RichTextArea rtb2 = new RichTextArea(); > > If you have two RichTextBoxes displayed and y

Re: New GWT Incubator Drop available

2008-09-10 Thread Emily
Also, on the topic of gwt-incubator, we (the gwt team) are having discussions about whether the gwt-incubator should compile against a) gwt-1.5 and gwt-trunk b) latest gwt-milestone and gwt-trunk c) only gwt-trunk. Right now a) is true, but may/may not remain so. We would love to get some

Copying text between two RichTextBox[es] loses its formatting

2008-09-10 Thread ALF
final RichTextArea rtb1 = new RichTextArea(); final RichTextArea rtb2 = new RichTextArea(); If you have two RichTextBoxes displayed and you enter rich text into one box then click a button to transfer that text to the other RichTextBox it loses it's richness. rtb1.setText(rtb2.getText()); Is it

How to catch mouse events on the Tree?

2008-09-10 Thread gwt_user
I want to catch double click and right click events on the tree items. Here is the tree: Tree tree = new Tree(){ public void onBrowseEvent(Event e) { GWT.log("Browse event happened", null); if(DOM.eventGetType(e) ==

Re: Customize Hosted-mode browser

2008-09-10 Thread Thad
I've been using OOPHM on Linux with Firefox 3.0.1 for about a week now and I'm generally happy with the results. I had some initial problems converting one project over when I missed one of Eclipse's links to gwt-user.jar. That seemed to cause my RPC servlet calls to fail, but I got that correct

Re: Download file with GWT

2008-09-10 Thread obesga
What are you trying on client-side ? What's exactly the error you have ? Oskar On Sep 10, 2:03 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hello, > > I want to download a file when in click on a button. I try this code > found here > > (http://groups.google.com/group/Google-Web-Toolkit/

Anyone has luck getting Composite to work with Ext panels/layouts?

2008-09-10 Thread wt
I am trying to wrap gwt-ext's showcase in a GWT composite and add that to the viewport, but it just renders a blank window. I wonder if anyone has luck to get composite working with Ext's panels and layouts? Without composite, there is really no way to organize your UI code in an OO way. Any help/

Re: How to deploy gwt client and gwt server on seperate machine

2008-09-10 Thread obesga
mod_jk is avalible on apahce and ligthttpd 1.5 BETA mod_proxy is avalible on both servers Oskar On Sep 10, 4:26 pm, Thomas Broyer <[EMAIL PROTECTED]> wrote: > On 10 sep, 11:21, "Pete Kay" <[EMAIL PROTECTED]> wrote: > > > Hi, > > > I am trying tp have gwt client deployed on one machine (using l

How updated the translated JavaScript needs to be on the server to be debugged with -noserver in hosted mode?

2008-09-10 Thread Alexandre Walter Pretyman
Hi everyone, I have a (weird) setup where my application is divided into 3 projects: GWT-Client (Java Project which contains the classes that will be translated into javascript + the images) GWT-RPC (Java Project which contains the RPC classes that are common to both the client and the server) G

Re: RPC with Collections and generics

2008-09-10 Thread Eugen Paraschiv
Thanks a bunch. It's working now. I did try that at some point, but it didn't work. I just though that if the deserialization mechanism uses the no args constructor, and my final field is instantiated inside the no args constructor, all is fine. I now understand that after the first initialization

Re: SortableFixedWidthGrid missing in gwt-incubator_1-5_Sept_04?

2008-09-10 Thread pohl
Thank you for your reply. I was looking for those other methods too. Will post if i discover. --~--~-~--~~~---~--~~ 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-We

Re: java.lang.VerifyError with gwt 1.5

2008-09-10 Thread MikeTheQuick
I tried to clean and rebuild the project, but nothing changed... i have the same error... On 10 Set, 16:25, maudio <[EMAIL PROTECTED]> wrote: > Make sure you do a clean build to remove any previously compiled > stuff. > > On Sep 10, 5:24 am, MikeTheQuick <[EMAIL PROTECTED]> wrote: > > > Hi, i hop

Re: SortableFixedWidthGrid missing in gwt-incubator_1-5_Sept_04?

2008-09-10 Thread darkman97
Now must be used FixedWidthGrid. Take a look at java doc -> there's new css declarations too. Other interesting questions are some changes on sink events ( headerWraper and dataWraper ) if you take a look at ScrollTable.java you'll see it. I've still not found some old methods setHoveringPolicy(

Re: Portal with background image

2008-09-10 Thread 0ne_Up
thanks for your reply, but this is not working since I am using a viewport to display the portal, (adding the portal to the rootpanel does not work) I tried putting the background image code before and after instantiating the viewport, but still no success. the viewport seems to override the rootp

Re: Errors when I try to compile a project

2008-09-10 Thread Arthur Coleman
Maudio, I don't believe so. Do I need to add them all individually or may I add only the root directory where they are located? Bear On Sep 10, 2008, at 7:26 AM, maudio wrote: > > Are all the gwt jars in the classpath? > > On Sep 10, 3:45 am, Bear <[EMAIL PROTECTED]> wrote: >> I am having p

Re: Getting text from tabbar.

2008-09-10 Thread Ian Bambury
Is there something wrong with widget.getTabHTML(widget.getSelectedTab()); ? 2008/9/10 maudio <[EMAIL PROTECTED]> > > Thanks Alex. I was trying to avoid maintaining a list but that may be > the best way to go. > > On Sep 10, 8:07 am, "alex.d" <[EMAIL PROTECTED]> wrote: > > You can surely do smth

Re: Alternative to Image Bundles?

2008-09-10 Thread Thomas Broyer
On 10 sep, 00:51, Kevin <[EMAIL PROTECTED]> wrote: > > My code has a bunch of pushbuttons. Pushing a button makes that button > stand out, and fades the other, inactive pushbuttons. I have images > for the "up" and "down" positions of the buttons. > > I've saved my images in the public/img/ direc

Re: Alternative to Image Bundles?

2008-09-10 Thread maudio
It's most likely a path issue. My css file is at the root level and all my images are under an image folder. I specify my image as follows: Notice I have no preceding "/" url("images/tabactiveleft.gif"); On Sep 9, 6:51 pm, Kevin <[EMAIL PROTECTED]> wrote: > Hi, > > My code has a bunch of pus

Re: How can I access the variables from the Http get method in GWT Entry Point

2008-09-10 Thread m007
Thanks a lot Thomas that is just what i needed. very simple and usefull. thanks again.. On Sep 10, 9:56 am, Thomas Broyer <[EMAIL PROTECTED]> wrote: > On 9 sep, 22:34,m007<[EMAIL PROTECTED]> wrote: > > > hy, i need to get access to the variables that users send in the http > > get method > > in

Re: How to deploy gwt client and gwt server on seperate machine

2008-09-10 Thread Thomas Broyer
On 10 sep, 11:21, "Pete Kay" <[EMAIL PROTECTED]> wrote: > Hi, > > I am trying tp have gwt client deployed on one machine (using lighttpd ) and > gwt server deployed on another machine ( using tomcat). > > Inside the client config file, where can I specify the IP address of the > servlet? Er, whi

Re: Errors when I try to compile a project

2008-09-10 Thread maudio
Are all the gwt jars in the classpath? On Sep 10, 3:45 am, Bear <[EMAIL PROTECTED]> wrote: > I am having problem in Windows XP with gwt-1.4.61 and java 1.6.0_07. > The project loads correctly from the cmd prompt in hosted mode, but I > receive the following errors when I attempt -compile: > > Exc

Problem with apache <- ajp -> tomcat

2008-09-10 Thread Simon Eichenauer
Hi, I have a GWT application that is working fine when it can connect directly to tomcat. Now I wanted to put tomcat behind apache. I configured apache so that it sends messages via ajp to tomcat. Unfortunately this way most types of rpc calls from the GWT clients fail. I have one rpc call that r

PopupPanel used as tooltip with animation causes incorrect position

2008-09-10 Thread Joe Cole
Platform: Using GWT1.5 (release) and linux When I have a single instance of a popup panel, and it has it's content & position set in response to rollover of multiple elements, all works fine until I enable animation. To run the test case just use yourWidget.add(PopupFail.buildFailingTestCase())

Re: java.lang.VerifyError with gwt 1.5

2008-09-10 Thread maudio
Make sure you do a clean build to remove any previously compiled stuff. On Sep 10, 5:24 am, MikeTheQuick <[EMAIL PROTECTED]> wrote: > Hi, i hope that someone can help me... > I was tryng to port my gwt application from gwt 1.4 to gwt 1.5... the > only things that i changed for now are the librari

Re: Getting text from tabbar.

2008-09-10 Thread maudio
Thanks Alex. I was trying to avoid maintaining a list but that may be the best way to go. On Sep 10, 8:07 am, "alex.d" <[EMAIL PROTECTED]> wrote: > You can surely do smth. like: > > Element table = tabPanel.getTabBar().getElement(); > Element tr = DOM.getFirstChild(DOM.getFirstChild(table)); > /

Re: Grid & FlexTable: Support for "align" & "span" attributes for "col" element?

2008-09-10 Thread Thomas Broyer
On 10 sep, 14:06, "Fred Janon" <[EMAIL PROTECTED]> wrote: > I am trying to set "align='right'" on the "col" element of a Grid widget. > Since it's an attribute and has no equivalent, I would like to know what's > the most elegant way of doing that. I guess I can set a CellFormatter for > each ce

Re: How can I access the variables from the Http get method in GWT Entry Point

2008-09-10 Thread Thomas Broyer
On 9 sep, 22:34, m007 <[EMAIL PROTECTED]> wrote: > hy, i need to get access to the variables that users send in the http > get method > in my entry point class so I can load data with that information > > example:www.myurl.com?id=atr66fgk > > and i want to access to the id variable from my entry

Re: Portal with background image

2008-09-10 Thread alex.d
Just add an AbsolutePanel to your RootPanel, and an Image to the AbsolutePanel. On 10 Sep., 15:00, 0ne_Up <[EMAIL PROTECTED]> wrote: > Hi, I'm trying to create a portal with a background image. > i've tried setting the background in the body tag of the public html > page, > and I also tried to ad

Re: RPC with Collections and generics

2008-09-10 Thread Paul Robinson
Final fields are not serialized. Just remove the word "final". Eugen Paraschiv wrote: > public class A implements IsSerializable { > private final List items; > > What currently happens is this: I send a object of type A and the > object is sent OK, but on the other side, the 'items' collec

Portal with background image

2008-09-10 Thread 0ne_Up
Hi, I'm trying to create a portal with a background image. i've tried setting the background in the body tag of the public html page, and I also tried to add css to the portal and it's containing panel. so far, no success. anyone knows how to do this? --~--~-~--~~~---~-

Problems with gwt 1.5

2008-09-10 Thread MikeTheQuick
Hi.. i have a problem with the new gwt library... When i compile my gwt application i have this error : java.lang.VerifyError: Cannot inherit from final class [java] at java.lang.ClassLoader.defineClass1(Native Method) [java] at java.lang.ClassLoader.defineClass(Unknown Source)

Multi project setup i.e. dependent projects

2008-09-10 Thread marcelstoer
What's the most sensible way to create a multi project setup? I'd have a parent project with two modules and a number of child projects dependent on the parent project. Each of those child projects also provides two modules which inherit from the respective parent module and extend/overwrite parts

How to deploy gwt client and gwt server on seperate machine

2008-09-10 Thread Pete Kay
Hi, I am trying tp have gwt client deployed on one machine (using lighttpd ) and gwt server deployed on another machine ( using tomcat). Inside the client config file, where can I specify the IP address of the servlet? The default setting is using localhost for the servlet host. Any help will b

The map widget for your webpage.

2008-09-10 Thread Slay
First post. I am completely new to this sort of stuff so please be gentle. I tried to search and figure it out so i thought i'd ask out right. Some things to know about me. I don't really know anything about programming. I just picked up Dreamweaver and built a website for my friend. I am learning

Alternative to Image Bundles?

2008-09-10 Thread Kevin
Hi, My code has a bunch of pushbuttons. Pushing a button makes that button stand out, and fades the other, inactive pushbuttons. I have images for the "up" and "down" positions of the buttons. I've saved my images in the public/img/ directory. The hierarchy of my project is, src -> com ->

Errors when I try to compile a project

2008-09-10 Thread Bear
I am having problem in Windows XP with gwt-1.4.61 and java 1.6.0_07. The project loads correctly from the cmd prompt in hosted mode, but I receive the following errors when I attempt -compile: Exception in hread "main" java.lang.NoClassDefFoundError: com/google/ gwt/dev/gwtShell caused by: java.l

java.lang.VerifyError with gwt 1.5

2008-09-10 Thread MikeTheQuick
Hi, i hope that someone can help me... I was tryng to port my gwt application from gwt 1.4 to gwt 1.5... the only things that i changed for now are the libraries of gwt 1.5 that i had substitute with the same of gwt 1.4. Now i get a java.lang.VerifyError when i try to compile the gwt client files.

RPC with Collections and generics

2008-09-10 Thread Eugen Paraschiv
I'm using GWT 1.5.2. I'll try to be brief, as the question is already in the forums, albeit with no definitive answer. I want to send a collection of objects over the wire. The collection is a list (ArrayList to be exact), the objects ARE SERIALIZABLE (evidently). All is good, but the collection u

using google addsense with gwt

2008-09-10 Thread Rick
Hi all I want to place google adsense code into my gwt widgets. So that I can control its position where to show. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, sen

How can I access the variables from the Http get method in GWT Entry Point

2008-09-10 Thread m007
hy, i need to get access to the variables that users send in the http get method in my entry point class so I can load data with that information example: www.myurl.com?id=atr66fgk and i want to access to the id variable from my entry point class. Can anyone help me please... --~--~-~-

Re: Problems with loading icon

2008-09-10 Thread 0ne_Up
lol yes you're probably right i'm testing it in hosted mode and the DB is on a server in the same LAN. I'll test it again once i've uploaded it, thanks On 10 sep, 09:28, "alex.d" <[EMAIL PROTECTED]> wrote: > You are probably testing your app in hosted mode(with a local DB) - > it's pretty fast -

Re: Getting text from tabbar.

2008-09-10 Thread alex.d
You can surely do smth. like: Element table = tabPanel.getTabBar().getElement(); Element tr = DOM.getFirstChild(DOM.getFirstChild(table)); // (index + 1) to account for 'first' placeholder td. Element td = DOM.getChild(tr, index + 1); // not entirely sure what node is td, but // you got the idea

Grid & FlexTable: Support for "align" & "span" attributes for "col" element?

2008-09-10 Thread Fred Janon
I am trying to set "align='right'" on the "col" element of a Grid widget. Since it's an attribute and has no equivalent, I would like to know what's the most elegant way of doing that. I guess I can set a CellFormatter for each cell in the column, but I was looking for something more elegant and co

Re: http 501 not implemented

2008-09-10 Thread walden
Ok, you stumped the band. Go to the prize desk and claim your prize. :-) On Sep 9, 8:02 pm, Cecilia <[EMAIL PROTECTED]> wrote: > thank you > > the problem was a firewall blocking the content type that gwt > generates > > bye! > On Sep 9, 4:55 pm, Thomas Broyer <[EMAIL PROTECTED]> wrote: > > > >

Download file with GWT

2008-09-10 Thread [EMAIL PROTECTED]
Hello, I want to download a file when in click on a button. I try this code found here (http://groups.google.com/group/Google-Web-Toolkit/browse_thread/ thread/c8b8d2adc4128c6c/aa645788f6a74a1c) but it doesn't work. Please someone could help me ? Thank you. Regards. --~--~-~--~~-

Re: Google GWT training/consultants?

2008-09-10 Thread walden
Hmmm. I wonder if Google would be interested in certifying consultants in GWT. I would sign up for the course and take the test. Walden On Sep 8, 6:46 pm, Douglas <[EMAIL PROTECTED]> wrote: > My company is looking at GWT for use in new web apps, but they're > picky about having support availab

Re: problem gwt desiger in linux

2008-09-10 Thread Eric Clayberg - Instantiations
SInce you are using GWT 1.5, you need to be using GWT Designer v5.1.0, not v5.0.0. Also, make sure to review our notes for Linus users here... http://www.instantiations.com/forum/viewtopic.php?f=11&t=2082 Finally, please note that the GWT Designer support forum is here... http://www.instantiat

Getting text from tabbar.

2008-09-10 Thread maudio
Is there are way to get the text from the selected tab? I see there is an add() method with a string parm but no getter method to get the name one gives a tab. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google

Re: Is it possible to inject -nocache.js on demand?

2008-09-10 Thread Frank
I also have such requirement. Anybody can help? On Sep 9, 2:41 am, Thomas Broyer <[EMAIL PROTECTED]> wrote: > On Sep 8, 3:27 pm, Christian Voigt <[EMAIL PROTECTED]> > wrote: > > > Another google search brought the > > answer:http://www.pathf.com/blogs/2007/08/bjax-a-quick-ha > > > Problem is the

  1   2   >