Re: Horizontal tabs in a TabPanel

2009-06-30 Thread Bruce Choi
Just looked at some of the option avaliable, I think i'm going to add options into a stackpanel then putting the tabl panel and stackpanel into a dock panel. Just wondering how to incorporate it so everything looks awhole is it all done through a CSS?

Re: TextBox allow only numbers (gwt 1.6.4)

2009-06-30 Thread Dominik Erbsland
thanks all for the help so far! the solution of Pablo works for me. although I also have the problem with CTRL+V. If the user inputs a string like that there is no cancelKey() possible. I added a second keyhandler doing this: inputRufnummer.addKeyUpHandler(new KeyUpHandler() {

Re: Problem specifying Grid's cell size

2009-06-30 Thread Sowjanya Yerramneni
Hi, Can anyone help me out explaining how to add a hyperlink in a cell for any grid? I could set simple data into my grid but unable to find out how to add a hyperlink in one of the columns. Please let me know. On Tue, Jun 30, 2009 at 8:21 AM, hezjing hezj...@gmail.com wrote: Hi Ian, You

Re: How to add a hyperlink in a cell for any grid?

2009-06-30 Thread Sowjanya Yerramneni
Hey I am sorry :) Thanks for your response. I will try that out. On Tue, Jun 30, 2009 at 1:40 PM, hezjing hezj...@gmail.com wrote: Hi Sowjanya I think your question should start in a new thread ;-) On Tue, Jun 30, 2009 at 3:51 PM, Sowjanya Yerramneni y.sowja...@gmail.com wrote: Hi,

How to align the labels to the bottom of HorizontalPanel?

2009-06-30 Thread hezjing
Hi I have a big label and a small label, and I want to align-bottom these labels when added in HorizontalPanel: public void onModuleLoad() { Label bigTitle = new Label(BIG); bigTitle.setStyleName(big); Label smallTitle = new Label(small); smallTitle.setStyleName(small); HorizontalPanel panel

how to add a hyperlink in a cell for a gridpanel?

2009-06-30 Thread Sowjanya Yerramneni
Hi, Can anyone help me out explaining how to add a hyperlink in a cell for a gridpanel? I could set simple data into my grid but unable to find out how to add a hyperlink in one of the columns. Please let me know. Here is a piece of code: *GridPanel gridPanel = **new SampleGrid(new

Re: How to align the labels to the bottom of HorizontalPanel?

2009-06-30 Thread Damien Picard
Hi, Could you try something like : public void onModuleLoad() { Label bigTitle = new Label(BIG); bigTitle.setStyleName(big); Label smallTitle = new Label(small); smallTitle.setStyleName(small); HorizontalPanel panel = new HorizontalPanel(); // this style will set vertical-align: bottom

Re: How to align the labels to the bottom of HorizontalPanel?

2009-06-30 Thread hezjing
Hi Damien Yes, it is working now and the following is what the HTML generated! table class=my cellspacing=0 cellpadding=0 tbody tr td align=left style=vertical-align: bottom; div class=bigBIG/div /td td align=left style=vertical-align: bottom; div class=smallsmall/div /td /tr /tbody /table Hmmm

Re: How to align the labels to the bottom of HorizontalPanel?

2009-06-30 Thread Damien Picard
As you can see in the generated HTML code, the css class my is applied to the DOM element table. Nevertheless, each td node of this table is applied the css style vertical-align with the setted VerticalAlignment. And, in the XHTML/CSS definition, the style order applied is : - style attribute of

Re: Convert a Java Swing Application

2009-06-30 Thread Ivan Ooi
I think smart client better in term of licensing. it is LGPL. http://www.smartclient.com/smartgwt/ where Ext-GWT are under GPL. means you need an extra license for commercial use. On Tue, Jun 30, 2009 at 1:42 AM, DaBlick dabl...@gmail.com wrote: I would suggest that you consider using the

Add class to SerializationPolicy

2009-06-30 Thread Andrey
Hello, everyone! How can I add a class to SerializationPolicy directly? I don't want to reference it in Service class and I cannot refernce it as a non-transient member. I need this because this class is a member of another class having its own custom serializer and this class also has its own

Re: TextBox allow only numbers (gwt 1.6.4)

2009-06-30 Thread Thomas Broyer
On 30 juin, 09:22, Dominik Erbsland derbsl...@gmail.com wrote: Best solution for me would be if the framework would offer a number only TextBox - but for the moment this solution must suffice. Have a look at the ValueSpinner widget from the Incubator:

Re: How to align the labels to the bottom of HorizontalPanel?

2009-06-30 Thread hezjing
I think I'm a bit slow here :-P Probably I should ask how can we achieve this effect by setting CSS, without setVerticalAlignment()? On Tue, Jun 30, 2009 at 5:19 PM, Damien Picard picard.dam...@gmail.comwrote: As you can see in the generated HTML code, the css class my is applied to the DOM

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

2009-06-30 Thread ClusterCougar
I thought I posted this last night, but I don't see it. Apologies if this is a dupe. I've tried to implement the command pattern using generics, but have some hangups. You can see my code at http://code.google.com/p/gwt-command-pattern/ Hangups: 1) Too many parameters. It's just not pretty 2)

Ctrl + s keyboard event in GWT

2009-06-30 Thread Saeed Zarinfam
Hi I want to add Ctrl + s or Ctrl + xxx short key to my GWT program. please guide me. thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: GWT architecture MVP/EventBus (mentioned at Google I/O)

2009-06-30 Thread ClusterCougar
In my Display interface, I included a method like Widget getWidgetView(); which (interestingly enough) returns a widget view of the display object. this eliminates your casting problem, while still maintaining a degree of anonymity for the Display interface. On the command pattern thing, I

Re: Very large GWT app

2009-06-30 Thread lowecg2004
I know you've enquired about splitting the application, but are you gzip'ing the js code when downloading from your web server? That will reduce the current code size by 70% or so. Of course, this is complimentary to any splitting that you do. On Jun 29, 4:19 pm, Paul van Hoven

Re: GWT architecture MVP/EventBus (mentioned at Google I/O)

2009-06-30 Thread gscholt
On Jun 29, 11:13 pm, Daniel Jue teamp...@gmail.com wrote: Does anyone have a working MVP/Eventbus sample of something simple like the PhoneEditor? I don't think I'm doing it right.  The code from the IO presentation leaves out enough details so that I'm not sure what to do. For instance, in

Re: How to load a url in a panel?

2009-06-30 Thread Sowjanya Yerramneni
I used the following code to make a call. The html content was printed in the console where I can see the html code. There is no dynamic content displayed in the html. The html if executed individually will show a button. But when i made a call to the same from another html nothing got displayed.

Re: How to align the labels to the bottom of HorizontalPanel?

2009-06-30 Thread Damien Picard
I think it is not possible, because if you don't specify a VerticalAlignment, the default (top) is applied, with style=vertical-alignment: top. And there is no way in CSS to override it... A way to cheat with it could be : .my { background: yellow; } .my div{ height: 100%;

Re: Different button layout

2009-06-30 Thread Dariusz
I found the mistake I was doing... :( As usual, most errors are stupid and made by the developer itself. My module, which was calling my own css was overwritten by the default one. When I changed the ordering it was working module !-- Inherit the core Web Toolkit stuff.

Re: Why does HorizontalPanel cells defaults to vertical-align: top?

2009-06-30 Thread Ian Bambury
This is not what you said initially ('I want the textbox to be aligned at the bottom') which I gave you the answer to (!important). It does work, and it might have been more accurate for you to say that *you* can't get it to work. Also, a flowpanel *does* horizontally align the textbox with the

events of none visible widgets ?

2009-06-30 Thread Ed
I am trying to have a better understanding of the DOM Tree in relation with events. A few questions about that: Suppose I have a left menu that shows screen parts on the right side. If I select a menu item, I will create the screen part and leave it created during the whole application live

Re: trying to track GWT timers

2009-06-30 Thread Ian Bambury
Surely when you close the browser window (or navigate away) the timers are gone. Ian http://examples.roughian.com 2009/6/30 davidroe roe.da...@gmail.com I have a situation where I need to ensure that _every_ timer launched is closed upon exit, meaning I track each timer I create and ensure

Re: How to align the labels to the bottom of HorizontalPanel?

2009-06-30 Thread Ian Bambury
.my td { vertical-align: bottom !important; } Ian http://examples.roughian.com 2009/6/30 Damien Picard picard.dam...@gmail.com I think it is not possible, because if you don't specify a VerticalAlignment, the default (top) is applied, with style=vertical-alignment: top. And there is

Re: How to align the labels to the bottom of HorizontalPanel?

2009-06-30 Thread Damien Picard
So simply... I'm sorry hezjing to don't have think about !important. (It permits to force the rule to apply instead of cascading mechanism...) 2009/6/30 Ian Bambury ianbamb...@gmail.com .my td { vertical-align: bottom !important; } Ian http://examples.roughian.com 2009/6/30

Re: connecting gwt with orbited

2009-06-30 Thread Nathaniel
I was able to use orbited with gwt by including the orbited.js file in my project and then having orbited host the entry point html. Look at the help for the orbited configuration to see how you can set up directories under the static setting. I have a feeling you could also get this working

Re: Why does HorizontalPanel cells defaults to vertical-align: top?

2009-06-30 Thread max3000
Wow, that's quite a strong reaction you're showing there. 1. What I said at first is exactly what I wanted. Then, after I added the button, I realized bottom-aligning both the button and the textbox looked ugly. It is understandable that I continued trying (and seeing new things) after my

Re: Why does HorizontalPanel cells defaults to vertical-align: top?

2009-06-30 Thread max3000
Yes! It works with a flow panel. I really don't know why I couldn't get it to work before. Probably interference with some other things. Now if I can fix that damn button being too big in IE... Thanks! Max --~--~-~--~~~---~--~~ You received this message because

Re: Why does HorizontalPanel cells defaults to vertical-align: top?

2009-06-30 Thread Ian Bambury
Use a pushbutton - buttons are OS/browser dependent Ian http://examples.roughian.com 2009/6/30 max3000 maxime.lar...@gmail.com Yes! It works with a flow panel. I really don't know why I couldn't get it to work before. Probably interference with some other things. Now if I can fix that

Send list box items to server

2009-06-30 Thread ArunDhaJ
Hi, I've a GWT page with a list box and a button. Upon clicking the button, I need to send the selected list item to a servlet. How can I pass this list?by URL query string(GET)? or using POST ? Regards, ArunKumar.Dharuman --~--~-~--~~~---~--~~ You received this

Re: Why does HorizontalPanel cells defaults to vertical-align: top?

2009-06-30 Thread Ian Bambury
I do apologise. Put it down as being a strange and unreasonable reaction I have when I take the time and trouble to give someone a tested solution to their problem and then get told I'm talking bollocks. Ian http://examples.roughian.com 2009/6/30 max3000 maxime.lar...@gmail.com Wow, that's

Re: How to align the labels to the bottom of HorizontalPanel?

2009-06-30 Thread hezjing
Thanks Damien and Ian, you have been helping me a lot! On Tue, Jun 30, 2009 at 8:45 PM, Damien Picard picard.dam...@gmail.comwrote: So simply... I'm sorry hezjing to don't have think about !important. (It permits to force the rule to apply instead of cascading mechanism...) 2009/6/30 Ian

Re: GWT components too big in IE

2009-06-30 Thread Jason Essington
Or it could just be IE's wonderful (read broken) box model implementation. -jason On Jun 29, 2009, at 3:39 PM, max3000 wrote: Hi, GWT seems to render components too big in IE. This can be seen simply by navigating to the GWT showcase. Make sure the zoom is reset (100%). It is obvious

Re: Send list box items to server

2009-06-30 Thread Kamal Chandana Mettananda
Hi, You can call your servlet as a service and send the data with a method call. May be the following tutorial will help you to achieve this. http://lkamal.blogspot.com/2008/09/java-gwt-servlets-web-app-tutorial.html BR, Kamal --- Kamal Mettananda

Re: onModuleLoad is sometimes not called (Internet Explorer)

2009-06-30 Thread Hiedi
I have seen this alot with multiple GWT modules that my team has built. The root of the problem is a timing issue between GWT downloading and executing the moduleLoad and the page actually being done downloading all its content and rendering the host page. I am not surprised that disabling

Re: Send list box items to server

2009-06-30 Thread ArunDhaJ
It was a good tutorial on writing a servlets for GWT. Actually in my case, I'm using our own webserver within which we add servlets in it. for me the only option to communicate to servlet is through GET or POST request.. On Jun 30, 8:00 pm, Kamal Chandana Mettananda lka...@gmail.com wrote:

Re: Send list box items to server

2009-06-30 Thread Kamal Chandana Mettananda
So I guess you will need to create a link dynamically and open it using GWT; it means you'll have to use a GET call with parameters. --- http://lkamal.blogspot.com On Tue, Jun 30, 2009 at 9:18 PM, ArunDhaJ arund...@gmail.com wrote: It was a good tutorial

Re: trying to track GWT timers

2009-06-30 Thread davidRoe
I had thought the same. I am running GWT code under MobileSafari on the iPhone and am seeing occasional program crashes on exit. the stack trace seems to indicate that a timer is being fired, and I believe that perhaps the UIWebView has disappeared by the time it runs code expecting it to be

Re: Why does HorizontalPanel cells defaults to vertical-align: top?

2009-06-30 Thread max3000
I understand, sorry if my responses sounded like that. Again, I really appreciate the help. Thanks, Max --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: Why does HorizontalPanel cells defaults to vertical-align: top?

2009-06-30 Thread Joseph Arceneaux
Thanks much, but if you meant: panel.setCellHeight (label, 100%); that had 0 effect. I have noticed that if I change my panel to not fill its container (it goes into a dockpanel), then it's only the size of its two Label children, and hence the labels are contiguous. So I'm pretty sure I

unable to find xml file

2009-06-30 Thread thesheff
I'm very new to the GWT and have been reading GWT in Action. I'm trying to follow the examples and I'm getthing this error: [ERROR] Unable to find 'dashboard.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source? I have Dashboard.gwt.xml file

Stop DialogBox expand outside the bounds of visible screen area

2009-06-30 Thread shahid
I am displaying a lengthy form inside a centered DialogBox. I cannot see the top and bottom of the DialogBox because it extends outside the visible screen area. Does anyone know how to get round this ? --~--~-~--~~~---~--~~ You received this message because you

Re: Eclipse plugin for Eclipse 3.5 (Galileo)

2009-06-30 Thread Van
The sooner the better. My team is developing a large GWT application and need to move to Galileo ASAP. Van On Jun 25, 5:17 pm, Alex Rudnick a...@google.com wrote: If you enjoyed this thread, you may also like

Problem using junitCreator

2009-06-30 Thread Chris
Hi I'm trying to add a JUnit test suite using the junitCreator script, but am having problems. I have followed the instructions at (http:// code.google.com/webtoolkit/tutorials/1.6/JUnit.html). Here's what I run from the project's directory (i.e., the one containing the src and war

IE Performance Problems

2009-06-30 Thread radcortez
Hi, I'm currently developing a web application using GWT, and i'm having some performance issues on IE 6 and IE 7. My main requirement is to have a grid able to fulfill the following operations: - Pagination - Sort - Column Resize - Add / Remove / Edit rows - Data Grouping - Highlighting I've

GWT-generated Webpage fails to display on IE

2009-06-30 Thread snikrot
Hi all, Since a few days I've been developing a GWT-Web application (so I'm still pretty much a newbie). This application only (for now) runs only client sided. After compiling and running under Firefox Opera my application just runs fine. When running under Internet Explorer I'm getting an

Excel and GWT

2009-06-30 Thread garshita
Hi, I need to read data from my excel sheet and display it using GWT dynamically...I am very new to the topic. Can u suugest me a base so tht i can proceed... ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google

creating your own GWT theme or a pluggable look and feel

2009-06-30 Thread hobbyist
I am new to GWT and I went through a couple of the tutorials on the GWT website. I've started using GWT to make a webapp just for fun, and I one of the first things that I had difficulty with was styling the application in its entirety. I want to give the website a certain look, but I also want

Re: Stop DialogBox expand outside the bounds of visible screen area

2009-06-30 Thread Isaac Truett
Well, yeah. Set the height of the DialogBox. In CSS for example: .gwt-DialogBox { height: 300px; } On Tue, Jun 30, 2009 at 5:27 AM, shahidshahidza...@gmail.com wrote: I am displaying a lengthy form inside a centered DialogBox. I cannot see the top and bottom of the DialogBox because it

Re: WARNING: Could not open/create prefs root node Software\JavaSoft\Prefs at root 0x80000002. Windows RegCreateKeyEx(...) returned error code 5.

2009-06-30 Thread Chad
Yes. That's the same type of bug reports I found when I first saw this error (when I installed Eclipse 3.4 on Windows Vista x64). I tried creating the registry key the error complains about, but it didn't resolve the problem, so I just ignore it. It doesn't appear to hurt anything and after a

Re: How to load a url in a panel?

2009-06-30 Thread waf
Hi This is not correct. formPanel.setHtml(htmltext); is called when the request is send and then htmltext is null or whatever value it has. It is set to the response text when the request is finished and that's some time later. You should setHtml in onResponseReceived. -- waf

Big RPC and long running script error

2009-06-30 Thread John Lonergan
Does the RPC mechanism take any steps to avoid the dreaded long running script error for big serialisations and deserialisations? If not then is there anything I can do on the client side to chunk the serialisation/deserialisation. I'm shunting 10,000 rows up from the server and back.

Native JSON parsing

2009-06-30 Thread Jason.Sadler
I've been searching around to see if anyone's brought this up already - I haven't found anything (which surprises me) so my apologies if this is a repeat. Browsers are slowly starting to support native JSON - I know in particular Firefox 3.5 (released today) supports it and I'm under the

Re: IE Performance Problems

2009-06-30 Thread John Lonergan
I am using the SmartGwt grid and stuffing 10K rows into it using their DataSource api wrapped round an RPC. The entire data set gets held client-side. This grid seems to handle loading 10k rows reasonably well. Group/Multiple select may cause the slow running script error on big lists so

FireFox 3.5

2009-06-30 Thread Scooter
I tested our gwt app today on FireFox 3.5 on OSX now that it has been released. Lots of very nasty javascript errors related to DOM with a copy and paste as an example. Using GWT 1.6.4. The application loads and I don't get error messages until I execute a particular part of the application. I am

Re: FireFox 3.5

2009-06-30 Thread walrus
I am using GXT for GUI so it could be a GXT related issue. It's not GXT related. We are not using GXT, but are facing the very same issue. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: How to get tab Widget in a TabPanel?

2009-06-30 Thread Memo Sanchez
I completely agree with bcottam :) --~--~-~--~~~---~--~~ 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: unable to find xml file

2009-06-30 Thread waf
Hi The module XML file should be located at the parent of your client package/directory, eg. if your client files are at org.gwtbook.client then your module XML file should be located at org.gwtbook. How was your project created, are you using any IDE? Have you renamed the file after project

Re: FireFox 3.5

2009-06-30 Thread Scooter
I was able to figure out how to trigger the error in my application. It appears related to a mouse being moved in and out of a text boxes. It could be tooltips related. If I move the mouse quickly across a couple text fields in a form then I get the error. If I move in and out of a single text

Survey - who's doing what

2009-06-30 Thread John Lonergan
Is there a survey anywhere showing who's using what components/ toolkits. How many people are using just plain old GWT widgets / or some other named toolkit (eg SmartGwt). What folk are using 3rd party toolkits are they mixing basic GWT with toolkit widgets, or just using the toolkit generally.

Re: GWT-generated Webpage fails to display on IE

2009-06-30 Thread waf
Hi there, The problem is at some other place. This 'undefined' property is correct javascript construct. When trying to pinpoint a problem like this it is better to compile with the output style 'Pretty'. This way you can find more accurate location where the problem occured. -- waf

Re: GWT architecture MVP/EventBus (mentioned at Google I/O)

2009-06-30 Thread Jason A. Beranek
I've struggled with the go(RootPanel.get()) function as well, but discounted the idea of casting my Presenter.Display interface to a Widget as it removes an amount of type safety from the presenter and somewhat defeats the purpose of having a nice generic Display interface for the Presenter to

Re: GWT architecture MVP/EventBus (mentioned at Google I/O)

2009-06-30 Thread Zheren
So if for a TextBox I need to bind both FocusHandler and BlurHandler, I need to have two interfaces and combine them? How does that work? On Jun 30, 6:54 am, gscholt gsch...@gmail.com wrote: On Jun 29, 11:13 pm, Daniel Jue teamp...@gmail.com wrote: Does anyone have a working

Re: unable to find xml file

2009-06-30 Thread Dan Sheffner
This fixed the issue but. module rename-to='dashboard' The book I bought GWT in action expects GWT 1.4 and I'm trying to use GWT 1.6.4. There are so many differences already within the 1.6.4 that this book is almost useless. I usually prefer to read text books and have a physical book but

Re: unable to find xml file

2009-06-30 Thread Kwhit
I would really consider running through the Google getting started tutorials. They are well structured and pretty complete in that they also introduce you to the server side and App Spot which is frankly a brilliant service. Here's the three most used links I used whilst getting up to speed.

New site created with GWT

2009-06-30 Thread Michael W
I am happy to announce that we launched beta version of holidayinn website written with GWT this past weekend. The new site http://www.holidayinn.com/hotels/us/en/reservation will replace existing site http://www.ichotelsgroup.com/h/d/hi/1/en/home in the future. The existing site has over 2

Converting gwt project in Windows to Mac with eclipse gwt plugin

2009-06-30 Thread EricM
I am trying to convert a web-application project originally created in the following environment- - on a Windows installation of eclipse - using GWT 1.4.62, installed separately from eclipse into the following environment - a mac installation of eclipse - with gwt 1.6.4 installed as

Re: Excel and GWT

2009-06-30 Thread bradr
check out JExcelAPI: http://jexcelapi.sourceforge.net/ You can create a Servlet / RPC method that reads the excel spreadsheet and returns the contents to gwt to display in a FlexTable On Jun 29, 10:41 pm, garshita grshtgu...@gmail.com wrote: Hi, I need to read data from my excel sheet and

Line Breaks in Labels Problems

2009-06-30 Thread il1019
I'm having some issues with line breaks. They work in the Hosted Browser as well as IE8, however the don't work in Firefox or Opera. For example, if the user enters code in a text area that has line breaks (they pressed enter at some point), these line breaks will only be displayed in IE. I'm

Re: Why does HorizontalPanel cells defaults to vertical-align: top?

2009-06-30 Thread Ian Bambury
It's not a bug, it's just how HTML works. Put a border on the vp (vp.setBorder(1)) and give the labels a background colour and you will see what you are doing more easily. The VP is a table, and if you have two TDs and give the table a height, each TD will be half that height (if the content is

Re: Invoke oracle from suggestbox on key

2009-06-30 Thread Isaac Truett
Are you looking for the showSuggestionList() method of SuggestBox? On Mon, Jun 29, 2009 at 10:16 AM, CMBschrepf...@gmail.com wrote: I would like to add a key handler to the suggestbox so that on a keydown it would ask the oracle for suggestion from the server, no matter if there is text or

Re: Problem using junitCreator

2009-06-30 Thread Isaac Truett
If I run the PiconmatTest-hosted script, I get a Class not found com.piconmat.client.PiconmatTest error—presumably because the java file has not been compiled. Exactly. It's not compiled. Add test as a source folder (ProjectPropertiesJava Build PathSource). The project was not built since

Re: CSS loads for 1 millisecond, then disappears

2009-06-30 Thread Isaac Truett
A code sample that reproduces the problem would be helpful. On the surface, I don't see how this could be related to GWT. What happens if you remove GWT from the scenario altogether? On Fri, Jun 26, 2009 at 11:11 AM, DTrejotookie.tr...@gmail.com wrote: Hello, I am having a problem with my

Re: CSS loads for 1 millisecond, then disappears

2009-06-30 Thread Ian Bambury
Look in the module file (ends in *.gwt.xml) Do you have the default GWT styles included? I suspect you do and they are overwriting your styles in the HTML. Ian http://examples.roughian.com 2009/6/26 DTrejo tookie.tr...@gmail.com Hello, I am having a problem with my CSS. My hosted mode

Client-side GChart 2.5: Faster, sharper, GWTCanvas-rendered, pie, line and area charts.

2009-06-30 Thread John Gunther
Client-side GChart lets you add charts to your GWT applications with nothing more than its 3,000 or so lines of Apache 2.0 licensed Java. GChart 2.5 adds a GWT canvas rendering option for better looking, more quickly drawn, alpha-transparent, pie, line, and area charts. Homepage (live-demo,

Re: CSS loads for 1 millisecond, then disappears

2009-06-30 Thread David Trejo
How terribly ridiculous! It seems that my css file started with a capital letter, I had it written with a lowercase letter, and thus it was not working. Now that I've corrected it, my css works: link type=text/css rel=stylesheet href=Test.css/ I would have realized that much sooner if the css had

Re: CSS loads for 1 millisecond, then disappears

2009-06-30 Thread David Trejo
Ian you were right, after I corrected the typo and commented out the gwt styles, everything worked. Thanks for helping, David Trejo On Tue, Jun 30, 2009 at 2:53 PM, David Trejo tookie.tr...@gmail.com wrote: How terribly ridiculous! It seems that my css file started with a capital letter, I had

Re: Native JSON parsing

2009-06-30 Thread Thomas Broyer
On 30 juin, 21:16, Jason.Sadler jason.sad...@gmail.com wrote: I've been searching around to see if anyone's brought this up already - I haven't found anything (which surprises me) so my apologies if this is a repeat. Browsers are slowly starting to support native JSON - I know in

Re: FireFox 3.5

2009-06-30 Thread Thomas Broyer
On 30 juin, 21:26, walrus ask...@gmail.com wrote: I am using GXT for GUI so it could be a GXT related issue. It's not GXT related. We are not using GXT, but are facing the very same issue. For those not following commits and/or the GWT-Contributors group, this is a bug in FF3.5 (will be

Re: GWT-generated Webpage fails to display on IE

2009-06-30 Thread Thomas Broyer
On 30 juin, 12:24, snikrot ctenhoo...@gmail.com wrote: Hi all, Since a few days I've been developing a GWT-Web application (so I'm still pretty much a newbie). This application only (for now) runs only client sided. After compiling and running under Firefox Opera my application just runs

Re: Line Breaks in Labels Problems

2009-06-30 Thread Thomas Broyer
On 30 juin, 22:22, il1019 dean.mar...@gmail.com wrote: I'm having some issues with line breaks. They work in the Hosted Browser as well as IE8, however the don't work in Firefox or Opera. For example, if the user enters code in a text area that has line breaks (they pressed enter at some

Problems with gwt history in firefox after adding a frame........Urgent help needed

2009-06-30 Thread retro
Hi Guys, i am running into an issue with history getting wiped out after i launch a popup with an iframe added to it as content. The PopUpPanel has a content area which is a simple panel. I set the Frame as the widget on the simple panel. After this popup is close i remove Frame from

Re: Problems with gwt history in firefox after adding a frame........Urgent help needed

2009-06-30 Thread retro
This is the same behavior with firefox as well. --~--~-~--~~~---~--~~ 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

Re: Problems with gwt history in firefox after adding a frame........Urgent help needed

2009-06-30 Thread retro
I meant Chrome. On Jun 30, 7:00 pm, retro retrofit.br...@gmail.com wrote: This is the same behavior with firefox as well. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

HorizontalSplitPanel with DecoratorPanel in Firefox: how?

2009-06-30 Thread max3000
I'm trying to surround a HSP (height: 100%) with a DecoratorPanel. I can get it to work in Hosted, IE and Chrome. Unfortunately, no combination seems to work in Firefox. The code is straightforward: public void test(Panel parentPanel) { HorizontalSplitPanel hSplitPanel = new

GWT RichTextArea and double line spacing (paragraphs)

2009-06-30 Thread John Lonergan
When hitting the Return key in a richtextarea we get double line spacing rather than single line spacing. Looking at the generated HTML we find that each CarriageReturn causes a pair of paragraph tags (Pmy text/P) to be wrapped around the text. Can paragraph insertion be turned off. My users

gwtjsonrpc

2009-06-30 Thread asianCoolz
i came across this project http://android.git.kernel.org/?p=tools/gwtjsonrpc.git . is this just for android or i can use with any app using gwt? any overview article,tutorial on this? --~--~-~--~~~---~--~~ You received this message because you are subscribed to

Re: gwtjsonrpc

2009-06-30 Thread Shawn Pearce
On Tue, Jun 30, 2009 at 18:49, asianCoolzsecond.co...@gmail.com wrote: i came across this project http://android.git.kernel.org/?p=tools/gwtjsonrpc.git . is this just for android or i can use with any app using gwt?  any overview article,tutorial on this? Actually, its not for Android, its

Re: single-origin error, shouldn't be happening?

2009-06-30 Thread Brice
Created issue http://code.google.com/p/google-web-toolkit/issues/detail?id=3795 to track ... On Jun 26, 9:29 am, Brice bdr...@gmail.com wrote: I was able to use the emulate IE7 hack to get IE8 to work, but that's nasty and I keep hoping there's going to be a way I can upgrade to a recent

Re: Excel and GWT

2009-06-30 Thread Rakesh
use jdbc on the server side to select and insert data into your excel spread sheet. If you are using MS, try the ODBC-JDBC method. Or check this project: https://xlsql.dev.java.net/ On Jun 30, 12:41 am, garshita grshtgu...@gmail.com wrote: Hi, I need to read data from my excel sheet and

Re: Convert a Java Swing Application

2009-06-30 Thread koollx
You should check out AjaxSwing, which automatically converts Swing application to web application at runtime. This requires virtually no code changes and you'll actually have a dual client - GUI client with Swing and AJAX client with AjaxSwing. http://www.ajaxswing.com/

Re: Help needed - Working with ClientBundle

2009-06-30 Thread uwfrog
The css resource needs to be injected manually. public class HelloWorld implements EntryPoint { /* (non-Javadoc) * @see com.google.gwt.core.client.EntryPoint#onModuleLoad() */ @Override public void onModuleLoad() { ==

Problem with Firefox CSS rendering

2009-06-30 Thread Kevvy
I have a label which i want to look like a link. So i Altered the CSS so it displays like one .gwt-label { display:block; color: blue; cursor: pointer; cursor: hand; } Some reason it works fine in IE but if i open it in Firefox, the color remains grey and the cursor doesn't change... any

[gwt-contrib] Re: Allow detached JDO objects to be transferred via RPC

2009-06-30 Thread bruno
Hi Bod and Dan, Very happy to see that this issue is on its way to be solved :) Nevertheless, I think it would be useful if JDO management code and RPC serialization can be separated : instead of having for (Class iface : interfaces) { if (javax.jdo.spi.Detachable.equals(iface.getName())) {

[gwt-contrib] Re: Misc JS problem cleanup

2009-06-30 Thread jgw
On 2009/06/19 17:30:23, jgw wrote: On 2009/06/19 01:37:23, scottb wrote: LGTM. Good catches, all. BTW, Scott -- could you please go ahead and commit this when you have a moment? I'd like to get these into the 1.6 maintenance release. http://gwt-code-reviews.appspot.com/42802

[gwt-contrib] Fix for Firefox 3.5 relatedTarget bug (https://bugzilla.mozilla.org/show_bug.cgi?id=497780)

2009-06-30 Thread jgw
Reviewers: jlabanca, Please review this at http://gwt-code-reviews.appspot.com/49803 Affected files: M user/src/com/google/gwt/dom/client/DOMImplMozilla.java M user/src/com/google/gwt/user/client/impl/DOMImplStandard.java Index:

[gwt-contrib] Re: Fix for Firefox 3.5 relatedTarget bug (https://bugzilla.mozilla.org/show_bug.cgi?id=497780)

2009-06-30 Thread jgw
Note that the referenced Firefox bug is marked as fixed/resolved, but it didn't make it into the Firefox 3.5 release branch (they're expecting to ship a fix in 3.5.1, which essentially means we're all going to be stuck with this behavior for at least a year or so). I've tested this patch on a

[gwt-contrib] Re: Update RichTextAreaImplSafari

2009-06-30 Thread jgw
Looks good, modulo my comment about repeating method declarations in the formatter interfaces. http://gwt-code-reviews.appspot.com/49802/diff/1/5 File user/src/com/google/gwt/user/client/ui/RichTextArea.java (right): http://gwt-code-reviews.appspot.com/49802/diff/1/5#newcode485 Line 485: void

[gwt-contrib] Re: Fix for Firefox 3.5 relatedTarget bug (https://bugzilla.mozilla.org/show_bug.cgi?id=497780)

2009-06-30 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/49803 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

  1   2   >