Re: Error while running a project in eclipse

2009-03-30 Thread Vitali Lovich
I'm assuming that you do have the following project structure: src/com/apress/gwt/GWTTasks.gwt.xml src/com/apress/gwt/client src/com/apress/gwt/server ? Check to make sure that when you run, the src directory is in your classpath. On Tue, Mar 31, 2009 at 1:37 AM, ritu6386 wrote: > > Hi, > > I

Re: Event listening on ListBox in a CaptipnPanel's Legend

2009-03-30 Thread Danny Schimke
It seems there is no way... I tried to use BrowserEvents, but no result. I have build my own composite widget (Grid) and defined the style like a fieldset via CSS. Now it looks like a fieldset and I can use the ListBox I added into a cell that represents my caption. With this my problem is gone!

Re: Why not use applets?

2009-03-30 Thread Vitali Lovich
The choice for Javascript is the right one for web development due to the first-class support it has from all browsers. Improvements might come more gradually than with competing technologies like applets & Flash, but it's integration is far more natural and there's a lot of important improvements

Re: Flash with GWT

2009-03-30 Thread ping2ravi
Thanks all... "wmode = opaque" worked fine in IE,Mozilla,Chrome and safari... Ravi On Mar 26, 8:27 pm, Niklas Derouche wrote: > wmode = opaque > does the trick in some situations. you need to add it both as a param and in > the embed though. > > n. > > > > On Thu, Mar 26, 2009 at 1:28 PM, ping2

Re: How to use the tag in module XML file?

2009-03-30 Thread stsch01
> The standard launch file. What is the standard launch file? I hava a Java project in Eclipse, the standard launch file would be a launch configuration for the main Java class containing the main()-method and there is no such Java class for a GWT application. Again: Do you have any plugin instal

Re: Why not use applets?

2009-03-30 Thread Clint Gilbert
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 One reason is that Applets annoy users. You need to install the Java plugin, then when an applet loads, it takes a long time for the JRE to fire up, and the browser hangs the whole time. Meanwhile, Flash starts right up. Flash ads might be obtrusiv

Re: FlexTable : how to get not wrapping text functionality

2009-03-30 Thread Suren
Hi All, Atlast, I did as Rudolf suggested, here is code below to achieve non wrapping the text in FlexTable using a Widget { FlexTable f1 = new FlexTable(); Label l1 = new Label("This is a very long text"); l1.setWidth("20px"); f1.setWidget(0,0, l1); f1.setBorderWidth(2)

Re: FlexTable : how to get not wrapping text functionality

2009-03-30 Thread Suren
Thanks Magius and Rudolf for the reply. I should mention that I have a very little exposure to GWT, Here, what I have is a simple code using a FlexTable [code] import com.google.gwt.core.client.EntryPoint; import com.google.gwt.user.client.ui.FlexTable; import com.google.gwt.user.client.ui.Root

Error while running a project in eclipse

2009-03-30 Thread ritu6386
Hi, I am using gwt-windows-1.5.3 and jdk1.6 . I am not getting any error when i start from command prompt. When im trying to run the same code using eclipse i get this error [ERROR] Unable to find 'com/apress/gwt/GWTasks.gwt.xml' on your classpath; could be a typo, or maybe you forgot to incl

Re: Why not use applets?

2009-03-30 Thread Tony Strauss
One increasingly important platform that I believe does not support Java applets is the iPhone. I think also that only recent versions of the Java plugin (>= 6 update 10, released within the last year) have included LiveConnect, which provides a standard way to manipulate the DOM within the apple

JavaScriptException -> Type Error: Type mismatch - Please help

2009-03-30 Thread bronze...@gmail.com
Hi all A question in regard of the method, createTextNode, in DocumentImpl. So I invoked the method, and I happened to come across a case where I pass in the a "null" parameter to the method, and it's not pretty. It throws back a JavaScriptException as the following. I noticed how the method in

Announcing GWT 1.6 RC2

2009-03-30 Thread Scott Blum
The GWT team is happy to announce the availability of Google Web Toolkit 1.6 RC2. Download it here: http://code.google.com/p/google-web-toolkit/downloads/list?q=1.6.3 For an overview of the new features in 1.6, please see the announcement: http://googlewebtoolkit.blogspot.com/2009/03/google-we

Re: Unable to find 'com/apress/gwt/GWTasks.gwt.xml' on your classpath;

2009-03-30 Thread ritu6386
Hi, I am using gwt-windows-1.5.3 and jdk1.6 . I am not getting any error when i start from command prompt. When im trying to run the same code using eclipse i get this error [ERROR] Unable to find 'com/apress/gwt/GWTasks.gwt.xml' on your classpath; could be a typo, or maybe you forgot to inclu

Re: Window.Location.replace() doesn't work in Safari or Chrome or Opera

2009-03-30 Thread Ian Bambury
There are any number of menus nested within each other. They are all instances of the same widget. Eventually, you reach a non-menu, a real 'page'. The top level menu reacts to history. It passes this to a routine in the top menu called setMenuByToken(oldToken, newToken) It may get passed a token

Re: Help! My Generators don't work for Web Mode :(

2009-03-30 Thread Sumit Chandel
Hi Marcelo, Something just struck me. What happens if you use GWT.getTypeName(binded) instead of label.setText(binded.getClass().getName())? Hope that helps, -Sumit Chandel On Thu, Mar 26, 2009 at 6:42 PM, Marcelo Emanoel B. Diniz < marceloeman...@gmail.com> wrote: > > Hi Sumit here are the gen

Re: data table widget

2009-03-30 Thread Sumit Chandel
Hi Justin, You might want to try out the PagingScrollTable widget in the GWT Incubator project. You can see a demo as well as the demo source code at the links below. PagingScrollTable wiki doc and demo: http://code.google.com/p/google-web-toolkit-incubator/wiki/PagingScrollTable PagingScrollTabl

Re: Compiling servlet classes

2009-03-30 Thread Sumit Chandel
Hi Mathieu, The GWT RPC servlet class implements its client-side service interface. For this reason, when you're trying to javac the servlet class you will need to make sure that the client-side service interface is also on the classpath. Try compiling with the service interface on the classpath a

Re: uncaught Exception java.lang.IllegalArgumentException

2009-03-30 Thread Sumit Chandel
Hi greatness, The fact that you're using the Long type (which is now correctly emulated in GWT 1.5) tells me that it could be one of the causes of the migration issues you've been facing. Specifically, check out the notes about using the emulated Long type in the Java compatibility docs linked bel

What's the Easiest Way to Handle Server / Client Time differences?

2009-03-30 Thread Superman859
I have an java.util.Date object that is passed using GWT-RPC from the server to the client. It is pulled from a MySQL database as some date at 12h 00m 00s (12:00 AM). However, when it arrives to the client, the time is 8:00 PM the day before (4 hours earlier). I assume this is because my timezo

Re: Window.Location.replace() doesn't work in Safari or Chrome or Opera

2009-03-30 Thread Thomas Broyer
On 30 mar, 23:04, Ian Bambury wrote: > > The thing is, the history calls the screen set-up routine with a token, the > menu system calls it, the onModuleLoad calls it with or without a bookmark. > > The 'Home' token varies depending on what the menu items are called (this is > where the token co

Re: IE6 support SLA

2009-03-30 Thread Thomas Broyer
On 30 mar, 23:44, Jason Essington wrote: > Well, all versions up to the current GWT 1.5x all work with IE6, so,   > as long as you are developing for a legacy browser, I see nothing   > wrong with using an old version of your toolkit if it comes to that. How about the upcoming 1.6? My understa

TreeSet issue in RC 1.5.3

2009-03-30 Thread venkee
I have the following interface and class in my client(simplified version of my original) package mypackage; import java.io.Serializable; import java.util.TreeSet; public interface MyInterface extends Serializable { public TreeSet getNames(); }

Re: IE6 support SLA

2009-03-30 Thread Jason Essington
Well, all versions up to the current GWT 1.5x all work with IE6, so, as long as you are developing for a legacy browser, I see nothing wrong with using an old version of your toolkit if it comes to that. But in reality, deferred binding allows you to continue having a separate javascript pa

Re: GWT.log doesn't generate messages to console

2009-03-30 Thread Ian Bambury
Mmm, Well, It works for me in 1.5 and 1.6 I'd suggest that you start again from scratch, or if you like, I can zip you up a copy which works for me. Ian http://examples.roughian.com 2009/3/30 Guy Rouillier > > On Mar 30, 8:37 am, Ian Bambury wrote: > > Is the playground project using GXT? >

Re: Problems with byte[] (byte array) field

2009-03-30 Thread DBoy001
Nevermind, the problem was solved in GWT 1.6.2! On 30 mar, 13:45, DBoy001 wrote: > Hi, > > I'm experiencing problems with a byte array field in my model and > don't know what to do with it. > > I'm using the same model objects through all layers, from database to > web using Hibernate and Gilead

Re: Window.Location.replace() doesn't work in Safari or Chrome or Opera

2009-03-30 Thread Ian Bambury
Hi Adam, > > ok, now I see the issue.but, wouldn't using > window.location.replace also "lock" the user into the site in the same > way - when the user goes back to the first page the browser would then > fire them forwards again to the location.replace url? No because say the history is Sit

Re: GWT hosted mode ubuntu 8.10 - does not show content

2009-03-30 Thread Hugo Garcia
Hi I am running Ubuntu 8.10 + Eclipse JEE (or Classic with all the JEE stuff downloaded) + Sun Java 1.6 + Glassfish + Glassfish Eclipse Plugin + GWT 1.5 + GWT 1.6 + gwt-tooling without any problems. -H On Mon, Mar 23, 2009 at 3:42 AM, jakob.ga...@gmail.com wrote: > > Hi, > > I am running 32 on

Re: GWT hosted mode ubuntu 8.10 - does not show content

2009-03-30 Thread Crusoe
Ok, GWT does not like being run from a fat32 flash drive mounted via autoplug under kubuntu 8.10 When I moved the files to the main disk, worked fine. On Mar 30, 1:30 pm, Crusoe wrote: > Same exact problem here. Any solutions yet? > > On Mar 23, 12:42 am, "jakob.ga...@gmail.com" > wrote: > >

Re: GWT hosted mode ubuntu 8.10 - does not show content

2009-03-30 Thread Vitali Lovich
Not really a solution for most people, but I'm just running trunk with OOPHM, and everything is working pretty well - no worries about 32-bit or 64-bit. On Mon, Mar 30, 2009 at 4:30 PM, Crusoe wrote: > > Same exact problem here. Any sol

Re: GWT hosted mode ubuntu 8.10 - does not show content

2009-03-30 Thread Crusoe
Same exact problem here. Any solutions yet? On Mar 23, 12:42 am, "jakob.ga...@gmail.com" wrote: > Hi, > > I am running 32 only since my hardware does not support 64 bit. > The hosted mode starts but doesnt render the page (in this case, the > "click me" button). I've tried everything I could fin

Re: Runasync feature of GWT

2009-03-30 Thread Adam T
Hi Ghostcoder, You need to grab the trunk and compile it to use the RunAsync feature. This is a useful guide: http://code.google.com/p/google-web-toolkit/wiki/CodeSplitting I'm using it quite heavily in an application I'm building and whilst very useful it can be a little frustrating when your

Re: Window.Location.replace() doesn't work in Safari or Chrome or Opera

2009-03-30 Thread Adam T
ok, now I see the issue.but, wouldn't using window.location.replace also "lock" the user into the site in the same way - when the user goes back to the first page the browser would then fire them forwards again to the location.replace url? Maybe the key is to not have the #Home token and trea

TreeSet issue in RC 1.5.3

2009-03-30 Thread venkee
I have a simple serializable object in my gwt client public interface MyTabInfo extends Serializable { public TreeSet getName(); } public class MyTabInfoImpl implements MyTabInfo { NameComparator comparator = new NameComparator(); private TreeSet names = new TreeSet(comparator)

Re: GWT.log doesn't generate messages to console

2009-03-30 Thread Guy Rouillier
On Mar 30, 8:37 am, Ian Bambury wrote: > Is the playground project using GXT? > If it is, I'd try cutting it out and seeing what happens. > > If it isn't, try posting some code. Ian, thanks, I am using GXT. I ripped all that out, and still no messages are showing. I've got this reduced to a si

IE6 support SLA

2009-03-30 Thread Starman
Hello all, I am developping a corporate GWT app. The client is still on IE6 because some other internal apps only support IE6. Those won't be updated soon so I have to assume my client will stay on IE6 for some time. Now that IE8 final is out, what is the Service Level Agreement I can expect fro

Re: How to server GWT pages from CDN network ?

2009-03-30 Thread Ghostcoder
Thanks for that information Chris ,I will give Runasync option a shot to improve my load time, if not good then I will have to go with the CDN approach. Thanks On Mar 30, 1:41 pm, lowecg2004 wrote: > I asked the same question a while back: > > http://groups.google.com/group/Google-Web-Toolkit/

[Announce] SmartGWT Enterprise Edition available now

2009-03-30 Thread ckendrick
SmartGWT is an popular, open source, extremely rich widget library and databinding framework for GWT, available under the LGPL. SmartGWT Enterprise Edition (SmartGWT EE for short) is a commercially licensed version of SmartGWT that includes Java Server side functionality, additional tools, and a

Runasync feature of GWT

2009-03-30 Thread Ghostcoder
My application is very huge and the HTML file with script is huge ,so I like to split the script size into small chunks so that the load time is better. I have seen some post on runasync feature in GWT ,I like to test that feature can someone suggest the correct stable revision which i can use to

Re: GWT 1.5.3 Compiler error with org.cobogw.gwt-1.2.2.jar file

2009-03-30 Thread nickle
Hi Hilbrand, Thanks for all your help! The problem turned out to be that one of our gwt.xml files did NOT have the inherits. thanks again, nick On Mar 29, 4:33 pm, Hilbrand wrote: > Hi Nick, > > The message indicates or the source files are not present or the > cobogw User.gwt.xml could not b

Problems with byte[] (byte array) field

2009-03-30 Thread DBoy001
Hi, I'm experiencing problems with a byte array field in my model and don't know what to do with it. I'm using the same model objects through all layers, from database to web using Hibernate and Gilead (Hibernate4GWT) but since I've added that byte[] field, the GWT compilation won't work and hos

Re: PROBLEM: Running applicationCreator.cmd

2009-03-30 Thread Isaac Truett
Welcome! Could you post the error message that you received when running applicationCreator.cmd? On Mon, Mar 30, 2009 at 1:27 AM, PenPan wrote: > > Hi! > > I'm new here and very much interested in learning to build an > application with GWT. I believe that GWT is the future of web > developmen

Re: Why not use applets?

2009-03-30 Thread Rakesh
correction: netscape => firefox On Mar 29, 11:46 pm, Rakesh wrote: > My thoughts on javafx: > - jnpl start: Web apps are supposed to run in web browser!  More over > they are supposed to co-exist with other stuff on the webpage, example > javascript, html. While I like the concept of webstart fo

Re: How to match columns in PagingScrolltable

2009-03-30 Thread Isaac Truett
The PagingScrollTable should handle that for you. Can you post a snippet of code that produces the problem? 2009/3/29 Abhishek Srivastava (अभिषेक श्रीव > > Hi, > > How can I match header and data table column boundaries in a paging scroll > table. > The headers the not matching the correspondi

Re: FlexTable : how to get not wrapping text functionality

2009-03-30 Thread Magius
I achieved to avoid the word wrap after a long session with google and trying different things. And only for IE! Tables are old elements of HTML with a lot of css-options to render. I did several things, probably some of them are not needed, I expect to not have forgot anyone. In my widget const

Re: ScrollPanel problem in Chrome/Safari

2009-03-30 Thread Ian Bambury
I don't think it was meant to solve you *scrollpanel* problem... Ian 2009/3/30 Nicanor Babula > > Thx man. It really solved my ScrollPanel problem. > > On Monday 30 March 2009 15:45:43 Isaac Truett wrote: > > You might find some useful suggestions here: > > > http://groups.google.com/group/Goo

Re: ScrollPanel problem in Chrome/Safari

2009-03-30 Thread Nicanor Babula
Thx man. It really solved my ScrollPanel problem. On Monday 30 March 2009 15:45:43 Isaac Truett wrote: > You might find some useful suggestions here: > http://groups.google.com/group/Google-Web-Toolkit/web/gwt-discussion-group- >charter > > > > > On Sun, Mar 29, 2009 at 3:42 PM, nicanor.babula >

Re: ScrollPanel problem in Chrome/Safari

2009-03-30 Thread Isaac Truett
You might find some useful suggestions here: http://groups.google.com/group/Google-Web-Toolkit/web/gwt-discussion-group-charter On Sun, Mar 29, 2009 at 3:42 PM, nicanor.babula wrote: > > Come on people. > > It's been 3 days since my post. No one knows the answer? Very well > then. If I ask HOW

Mouse handler in GWT1.6

2009-03-30 Thread Lokesh
Hi, I am working with GWT with added Plugable features like DND and ENT. Presently i am facing a problem while using the GWT Listners on the Label. As per my Understanding the GWT 1.6 Version has changed the listner handling style, which is more inline with the JavaScript Standards (Not fully bu

Mouse handler in GWT1.6

2009-03-30 Thread Lokesh
Hi, I am working with GWT with added Plugable features like DND and ENT. Presently i am facing a problem while using the GWT Listners on the Label. As per my Understanding the GWT 1.6 Version has changed the listner handling style, which is more inline with the JavaScript Standards (Not fully bu

Would you like Junit 4 support for GWT?

2009-03-30 Thread Hugo Garcia
Hi The time to move on from Junit 3 to Junit 4 seems arrived with the addition Annotation to GWT 1.6 and the use of JDK 1.6 which prevented the resolution of Issue 1683. Ten people have stared Issue 1683 in order to follow the progress of adding Junit 4 support for GWT. I would like to encourag

Re: Sorting rows in Grids

2009-03-30 Thread Ian Bambury
Sorting data in the grid and swapping all the cells about gets very slow very quickly as the number of cells increases. You might be better off with an arraylist (for rows) of arraylists (for widgets in cells) and then sort the rows-arraylist according to the value of a certain column widget. Then

Re: GWT.log doesn't generate messages to console

2009-03-30 Thread Ian Bambury
Is the playground project using GXT? If it is, I'd try cutting it out and seeing what happens. If it isn't, try posting some code. Ian http://examples.roughian.com 2009/3/30 Guy Rouillier > > Sorry, forgot to mention I'm using GWT 1.5.3. Scott, thanks for the > pointer. Since our real proj

Sorting rows in Grids

2009-03-30 Thread fatjack1...@googlemail.com
Hi everyone, Is there a way to sort a column in say Ascending order using a grid. Basically, I have a column called 'Total Cost' that adds together some values for each row, and I now need to sort the rows with the highest first. Is there a simple way to do this? Regards, Jack --~--~-~--

Re: Doubt abut DialogBox

2009-03-30 Thread 5leipn1r
Thanks Thomas. I thinks thats exacly the problem. I just removed the standard inject line on gwt.xml and the background color I've set on my .css file worked. I will try the inject aproached you just told to dont lose all the standard css from theme and override just the ones I want. On Mar 30,

Re: Set CSS for ListBox Items working in Firefox not in Safari

2009-03-30 Thread priya
Can anyone help me with this issue? On Mar 24, 6:15 pm, priya wrote: > Hi, > > Setting listbox visible false and then true is working for color.. > But i want to set image.. it's not working for image.. > > I know it's not CSS issue.. > my code is not working in Safari and IE... > It's working

Re: Window.Location.replace() doesn't work in Safari or Chrome or Opera

2009-03-30 Thread Ian Bambury
Hi Thomas, I don't see how that helps. If I understand, all you are saying is that if the token is blank, change it to 'Home'. But right now, if it is blank, I set up the default (the first item in the menu and any nested menus) and so I get to the default page that way. At the end of setting up th

Re: How to use the tag in module XML file?

2009-03-30 Thread Ian Bambury
2009/3/30 > > Hi Ian, > > no success, that is what I did exactly before. Again: How do you run > and compile your GWT project? What kind of Run/Compile launch > configuration are you using? The standard launch file. > > > In the last step of the instructins you mention "Click Run". What do > y

Re: Window.Location.replace() doesn't work in Safari or Chrome or Opera

2009-03-30 Thread Thomas Broyer
On 29 mar, 22:43, Ian Bambury wrote: > 2009/3/29 Thomas Broyer > > > > >  Am I clearer? > > I don't know. I know I'm not :-) > > OK. Where do you see this bit of code living? > > String token = History.getToken(); > if (token.length() == 0) { > token = HIS_INTRO;} > > onHistoryChanged(token);

Re: Connecting GWT and PHP

2009-03-30 Thread Thomas Broyer
On 29 mar, 17:56, "scottland.yo...@googlemail.com" wrote: > Hello Folks, > > I was wondering how to send a string varible to a php script from my > google webtoolkit code. > > i.e. I want to append a string to a php url so that the php script can > take that string and query the yahoo or delici

Re: Doubt abut DialogBox

2009-03-30 Thread Thomas Broyer
On 30 mar, 12:00, 5leipn1r wrote: > Yhea, I know, I've read this before post the message. But I've tried > to override the DialogBox Caption background image, remove that, make > a simple caption, with a custon collor and doesnt works, Even placing > the css code reffering to .dialogBox .Captio

Re: FlexTable : how to get not wrapping text functionality

2009-03-30 Thread rudolf michael
that's because your text is wrapped inside a div and not inside the td of the table. you either use setHTML instead of set widget and keep the style on the felx table td or if you're using setWidget then you need to apply the stylename on the label and not the td of the flex table. On Mon, Mar 30,

Re: RPC Performance/Response Problem

2009-03-30 Thread -Lord-67
Hi Jason, thank you for your answer, you (and gregor) were absolutely right: Hosted mode isn't useful to test the app if you want to know how it REALLY works later on. I've tried it in web mode now, and it seems as if this solves my problem completely. These 5 seconds are reduced to practically 0

Complete HTTPRequest onCompletion

2009-03-30 Thread ArunDhaJ
Hi All, I'm using GWT1.4.62 HTTPRequest. When I send an asyncGet request to server and before processing the response, i.e before execution of onCompletion, if i abruptly close the internet explorer and open again. The address bar contains the earlier request and the response is shown in the page,

Re: Doubt abut DialogBox

2009-03-30 Thread 5leipn1r
Yhea, I know, I've read this before post the message. But I've tried to override the DialogBox Caption background image, remove that, make a simple caption, with a custon collor and doesnt works, Even placing the css code reffering to .dialogBox .Caption like the doc said. The background fade colo

Re: Adding GWT widget in a simple web app

2009-03-30 Thread Peter Ondruška
Yes it is easy. See a live sample at http://www.kaibo.eu/home.html. The contact dialog box is added using: RootPanel.get("contactme").add(p); // p is just a panel and the html page as a div for it: Peter On Mon, Mar 30, 2009 at 10:05 AM, lan wrote: > > Is there a way to simply add GWT widget

Re: customized CSS for gwt

2009-03-30 Thread Magius
With IE you can use the IE Developer Toolbar. It's very helpful. I've heard there a version for mozilla but i havn't used it. Sometimes I had to add a specific ID to the widget, to overwrite the element default style with my own styles. On Mar 29, 7:22 pm, Arthur Kalmenson wrote: > > I wanted

Re: GWT & Maven2 - A real how-to?

2009-03-30 Thread Sam Brodkin
jv, try this: http://code.google.com/p/gwt-maven2-starter-app/ --~--~-~--~~~---~--~~ 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

Re: FlexTable : how to get not wrapping text functionality

2009-03-30 Thread Suren
Hi Danny, Thanks for the reply. Yes I agree with your statement on the table and CSS style. But here my problem is that, how I can use that with the FlexTable, When I try to apply the style with the flexTable, I still get the wrapped text :( Thanks Suren On Mar 30, 1:13 pm, Danny Schimke

Re: How to server GWT pages from CDN network ?

2009-03-30 Thread lowecg2004
I asked the same question a while back: http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/3c06837fb6bfe732/5acff8e39b098cc2 I'll offer the same advice that I was given - search these forums for info on "Same Origin Policy" (SOP). This is a restriction that basically means y

Re: Connecting GWT and PHP

2009-03-30 Thread Panickos
You have to add the server hosting the php files in the whitelist. Here's an example of the parameter I'm using: -noserver -whitelist " ^http[:][/][/]myhost[.]com" -out www http://myhost.com/ProjectName/ProjectName.php This should appear as instructions inside an exception, if you try to run your

Re: Adding GWT widget in a simple web app

2009-03-30 Thread rudolf michael
Remember that your host page which is the entry point of your module can be anything you want(.html, .aspx,.asp,.jsp,...) all you need to do is just to add your module there. using meta tags or a js src tag that points to your module js file. On Mon, Mar 30, 2009 at 11:05 AM, lan wrote: > > Is

Re: FlexTable : how to get not wrapping text functionality

2009-03-30 Thread Danny Schimke
In standard a table wraps your text. You could try to add a the following CSS class to the cell (td- element of the table), that should not wrap its text. .no-wrap { white-space: nowrap; } In the following example- HTML the text is not breaking although the table has a width of 100px. The Table

Adding GWT widget in a simple web app

2009-03-30 Thread lan
Is there a way to simply add GWT widgets in a simple web app? I mean is it possible to use GWT components in a non-GWT application? Thank you. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group

Re: How to server GWT pages from CDN network ?

2009-03-30 Thread Ghostcoder
I have seen some post on runasync feature in GWT ,I like to test that feature can someone suggest the correct stable revision which i can use to test this feature. Do we need JAVA SDK 1.6 to build the source code in the trunk? Thankyou --~--~-~--~~~---~--~~ You re

Re: FlexTable : how to get not wrapping text functionality

2009-03-30 Thread Suren
Hi Danny, Thanks for the reply. I should have mentioned earlier that, I 've tried that option too. that is, I set the text to a label and disable the wordwrap to that label and add that label to a FlexTable using setWidget method. Result the same.. Still I am getting either full long text with