Re: Displaying a word document or any document saved as html

2008-10-20 Thread alex.d
Take an Frame, and load your work document in it. Of course your document should be converted to html on the server. On 19 Okt., 00:35, ET [EMAIL PROTECTED] wrote: Hello guys, need help as to how to display a work document or any document saved as html in gwt. Let's say I have my documents

Re: Deferred binding result type gone after refresh in hosted mode

2008-10-20 Thread Ivo
Sumit Chandel [EMAIL PROTECTED] wrote: Could you send us some code to try to reproduce the error? There are a few things that have changed from 1.4.62 to 1.5.2, but we haven't seen this kind of error and would need to reproduce it to find out what's going on. I will try to produce a minimal

Re: Import com.google.gdata.* doesn't work

2008-10-20 Thread Amit Dhingra
OOps... Thats a silly newbie error... Thanks for pointing that out. Will try and get back if I feel stuck somewhere. :)) Cheers, Amit www.amitdhingra.in On Sat, Oct 18, 2008 at 7:33 AM, Sumit Chandel [EMAIL PROTECTED]wrote: Hello Amit, Which client library are you using to add Google

Re: RPC failure with no useful information.

2008-10-20 Thread Lothar Kimmeringer
Larry White schrieb: That might have worked, but i worked around the problem. I tracked it down to a Serializable object that contained a date that was reconstructed from a Postgres DB using Apache's open JPA. something like java.util.Date date = myResultSet.getDate(1); If yes, the returned

Re: what GUI creator are you using ?

2008-10-20 Thread Yonatan Maman
does it have a freeware edition ? On Oct 20, 8:30 am, alex.d [EMAIL PROTECTED] wrote: Definitely GWT Designer. On 20 Okt., 07:01, Joshua Partogi [EMAIL PROTECTED] wrote: I use IntelliJ IDEA. On Oct 19, 8:50 pm, Yonatan Maman [EMAIL PROTECTED] wrote: or do you prefer 'hand writing'

Re: Two Async Calls in one Method/Project - (using Tomcat )

2008-10-20 Thread Lothar Kimmeringer
Michi_de schrieb: Actually i've some problem with my GWT project. I have some textfield and a button. Clickin the button, a method starts and write the string into a mysql database with a servlet. It works wonderfull. Now i wanted some additional features in this method. I want to search

Re: Two Async Calls in one Method/Project - (using Tomcat )

2008-10-20 Thread Michi_de
Now i just wanted to add one thing: when i try only the other method as stand alone, to check for existing strings in the db i have some trouble too. I just implement the call to check for existing strings. If i find some, a message label apear and tells me that. The thing i wounder now is, why

Re: Your opinion sought: Jetty or Tomcat?

2008-10-20 Thread Manuel Carrasco
The most annoying issue with GWT is performance in development mode. I mean, compiling, startng hosted mode and running GWT Unit tests. So any action that improves these is welcome. So my vote if for jetty On Mon, Oct 20, 2008 at 2:44 AM, Arthur Kalmenson [EMAIL PROTECTED]wrote: If it makes

Re: GWT incubator help

2008-10-20 Thread Ajay Jetti
and I tried to include Google maps Jar in my application and when i tried to use that i got the same error again...ie error in jar:and so on Can anybody please let me know where is the problem, i m tempted to think that theres some problem with the jar source. i read lot of posts in which

Re: what GUI creator are you using ?

2008-10-20 Thread alex.d
2-Weeks trial version. On 20 Okt., 09:40, Yonatan Maman [EMAIL PROTECTED] wrote: does it have a  freeware edition ? On Oct 20, 8:30 am, alex.d [EMAIL PROTECTED] wrote: Definitely GWT Designer. On 20 Okt., 07:01, Joshua Partogi [EMAIL PROTECTED] wrote: I use IntelliJ IDEA. On Oct

Re: how to open a new page in same window in gwt

2008-10-20 Thread Manuel Carrasco
I don't understand what are you asking for. But, perhaps you are looking for these: - Open a new window Window.open(url,new_window_name, ) - Replace the content of the actual window Window.Location.assign(url); Manolo On Mon, Oct 20, 2008 at 11:17 AM, ship [EMAIL PROTECTED] wrote: hi, I

Re: what GUI creator are you using ?

2008-10-20 Thread ponthiaux eric
Yes definitively . 2008/10/20 Ed [EMAIL PROTECTED] I wish I could use GWT Designer or the other one. I tried it, but due to the GUI requirements it's not possible. Almost all the GWT standard widgets are extended/wrapped in someway such that I have a dozens of own components that I need to

Re: what GUI creator are you using ?

2008-10-20 Thread ponthiaux eric
do you prefer 'hand writing' GUI ? .. yes definitively , generated code is for newbies ... regards . 2008/10/20 Ed [EMAIL PROTECTED] I wish I could use GWT Designer or the other one. I tried it, but due to the GUI requirements it's not possible. Almost all the GWT standard widgets are

Re: Two Async Calls in one Method/Project - (using Tomcat )

2008-10-20 Thread gregor
Hi Miche_de, Basically your problems are around not waiting for your first asynch call to return before issuing the second one (a common error). doubleuser will aleways be null when you call getuser.getDefinedUser(vorname.getValue(), callbackFindUser); for the first time in this situation:

Re: RPC failure with no useful information.

2008-10-20 Thread Larry White
Wonderful. Thanks for the explanation. It makes perfect sense. On Mon, Oct 20, 2008 at 3:35 AM, Lothar Kimmeringer [EMAIL PROTECTED]wrote: Larry White schrieb: That might have worked, but i worked around the problem. I tracked it down to a Serializable object that contained a date that

Re: Your opinion sought: Jetty or Tomcat?

2008-10-20 Thread matias_warrior
I've been using -noserver since GWT 1.3 On Oct 13, 7:48 pm, Bruce Johnson [EMAIL PROTECTED] wrote: Hi everyone, Hope you're enjoying 1.5. The GWT team has started putting together a 1.6 roadmap, which we'll publish as soon as we have it nailed down. Two of the areas we want to work on for

How to use Hyperlink

2008-10-20 Thread Joshua Partogi
Dear all, How do I navigate from one Component to the other with Hyperlink? Can anyone give me an insight on how it works and how to use it please. I still don't understand on how to use it and how this component work. Help really appreciated. Thank you in advance

How to open new opage in samre window

2008-10-20 Thread avd
Hello Sir, I have a problem in which i want to open a new page in the same window. For this i am using JSNI method in which i write $wnd.location.href = newLoc; where newLoc is the url of the new page. What url should i pass in newLoc var. I am passing TradeMark.html#Intro but this is not

Re: Why is the servlet classes packaged with GWT library?

2008-10-20 Thread Thomas Broyer
On 20 oct, 05:40, Joshua Partogi [EMAIL PROTECTED] wrote: Dear all, Does anybody know the reason why the servlet classes are packaged with the GWT library? So you don't have to add servlet.jar to your classpath when developping. That's the reason why gwt-user.jar shouldn't be deployed to

Re: running GWTTestCases without X

2008-10-20 Thread Arthur Kalmenson
Thank you John! That worked! Now I just need to figure out how to add that to either Hudson or the Maven build... -- Arthur Kalmenson On Fri, Oct 17, 2008 at 7:16 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: On Oct 17, 1:52 pm, Arthur Kalmenson [EMAIL PROTECTED] wrote: Thanks for the

Re: Query for row-border styling for a Grid

2008-10-20 Thread alex.d
Smth. like this probably? for(int i=0; igrid.getRowCount(); i++) for(int j=0; jgrid.getColumnCount(); j++) grid.getCellFormatter().addStyleName(i,j,border+i%2); Every even row(actually every cell in it) will have a border-style assigned. Every odd row - border1-style. On 20 Okt.,

Re: 1.5 final compiler warning

2008-10-20 Thread Joachim
Unfortunately, the issue in com.google.gwt.i18n.client.impl.ConstantMap.OrderedConstantSetjava.lang.String persists as of GWT 1.5.3 :( On 29 Sep., 23:45, ben [EMAIL PROTECTED] wrote: I'm using 1.5.2 and am getting the issue with a Hashmap, exact same final error as Victor received.  But

Re: what GUI creator are you using ?

2008-10-20 Thread Arthur Kalmenson
I prefer hand writing the GUI because I have a lot more control over it. I haven't had good experience with GUI generating tools. Besides, it seems too .NETish Regards, -- Arthur Kalmenson On Sun, Oct 19, 2008 at 4:50 AM, Yonatan Maman [EMAIL PROTECTED] wrote: or do you prefer 'hand

Re: How to open new opage in samre window

2008-10-20 Thread walden
Intro.html? On Oct 20, 8:04 am, avd [EMAIL PROTECTED] wrote: Hello Sir, I have a problem in which i want to open a new page in the same window. For this i am using JSNI method in which i write $wnd.location.href = newLoc; where newLoc is the url of the new page. What url should i pass in

Re: Your opinion sought: Jetty or Tomcat?

2008-10-20 Thread Alex
Switching to jetty would be fine we me and my colleagues as well. We use -noserver for hosted mode and unit testing (with some hackery). On Oct 13, 5:48 pm, Bruce Johnson [EMAIL PROTECTED] wrote: Hi everyone, Hope you're enjoying 1.5. The GWT team has started putting together a 1.6 roadmap,

Re: what GUI creator are you using ?

2008-10-20 Thread Jack
I use GWT Designer from Instantiations. There's decent support for swapping between hand-writing your code and using the GUI, with some notable exceptions which I won't go into unless someone really wants to know. I start with the GUI to get a shell constructed and as things get more

Re: Two Async Calls in one Method/Project - (using Tomcat )

2008-10-20 Thread gregor
You can have as many RPC servlets as you want in a GWT module, and each servlet can have as many methods as you want. How you structure it is up to you. I tend to group related use cases together as multiple methods in a single servlet. So in your login/security scenario, I would group all the

Re: Not able to create new element in RichTextArea

2008-10-20 Thread mflorea
Hi Vic, I have the same problem. If I change the generated JavaScript ($doc with document_0 in your example) everything is fine. If you look over the Document implementation you can see it creates new elements using the host document. But this is wrong! If I call

Re: what GUI creator are you using ?

2008-10-20 Thread gregor
I hand code as well. I have three main reasons for this: 1) I used to write Swing stuff and found Swing GUI builders just didn't cut it, especially those that used intermediate XML files, largely because Swing's layout managers are difficult to represent as WYSIWYG in an IDE, organizing nested

Re: Two Async Calls in one Method/Project - (using Tomcat )

2008-10-20 Thread Michi_de
Hey guys! Thank you so far, you realy helped me. I put all the logic into my servlet now, it works just fine. My servlet returns a string now, which tells me what was done, eg. user allready exists etc... its ok, but not perfect. I need then to implement some code like this if

Re: Your opinion sought: Jetty or Tomcat?

2008-10-20 Thread gregor
Hi all, Opinion on this thread seems pretty much one way, but I currently know little of Jetty. 1) Can anyone give a brief summary of why Jetty is better than Tomcat? 2) Can I be reassured I won't run into unforeseen difficulties deploying to JBoss? regards gregor On Oct 20, 2:03 pm, Alex

Query for row-border styling for a Grid

2008-10-20 Thread Ajay Garg
Hi all. I am trying to apply styling to borders to a Grid, on a row by row basis. That is, apply color 1 on border of row 1, color 2 on border of row 2, and so on. I am aware of Grid's getRowFormatter() method, but haven't been able to apply the color at the bottom border of say, row numbered

Re: what GUI creator are you using ?

2008-10-20 Thread Ed
I wish I could use GWT Designer or the other one. I tried it, but due to the GUI requirements it's not possible. Almost all the GWT standard widgets are extended/wrapped in someway such that I have a dozens of own components that I need to comply the GUI requirements. I's hare to use these with a

Re: Your opinion sought: Jetty or Tomcat?

2008-10-20 Thread Joshua Partogi
Bruce, If your objective is to embed it in GWT, then I would definitely recommend Jetty. Cheers On Oct 14, 9:48 am, Bruce Johnson [EMAIL PROTECTED] wrote: Hi everyone, Hope you're enjoying 1.5. The GWT team has started putting together a 1.6 roadmap, which we'll publish as soon as we have

Re: Hosted Mode and setFocus()/setTabIndex()

2008-10-20 Thread jbdhl
Should I file an issue in the issue tracker about this problem? --~--~-~--~~~---~--~~ 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: Announcing GWT 1.5.3

2008-10-20 Thread nicolas.deloof
Hi, for maven users, this release will be available via maven central repository in few hours (after rsync does its job). Nicolas On 18 oct, 00:22, Ray Ryan [EMAIL PROTECTED] wrote: Hi, all. We have just deprecated GWT 1.5.2, and replaced it with GWT 1.5.3. This new release has a small

Change POST Request Returns 200 OK Server Response to 302

2008-10-20 Thread vineet
In my application i need to return 302 as response code of 'Post' request instead of 200. i tried using this.getThreadLocalResponse().setStatus(302) on server side but not able to acheive that. Please tell me how to acheive this. --~--~-~--~~~---~--~~ You received

Re: Change POST Request Returns 200 OK Server Response to 302

2008-10-20 Thread Lothar Kimmeringer
vineet schrieb: In my application i need to return 302 as response code of 'Post' request instead of 200. So we're talking of a request built with RequestBuilder? if that is the case, getThreadLocalResponse will return null if we're also talking about the implementation of doPost(...) i

Re: Your opinion sought: Jetty or Tomcat?

2008-10-20 Thread John
Manuel Carrasco wrote: The most annoying issue with GWT is performance in development mode. I mean, compiling, startng hosted mode and running GWT Unit tests. So any action that improves these is welcome. So my vote if for jetty +1

Re: what GUI creator are you using ?

2008-10-20 Thread Eric Clayberg - Instantiations
There is no free version (other than the trial), but the product is very inexpensive and should pay for itself with a couple of hours of use. On Oct 20, 3:40 am, Yonatan Maman [EMAIL PROTECTED] wrote: does it have a  freeware edition ? --~--~-~--~~~---~--~~ You

Re: what GUI creator are you using ?

2008-10-20 Thread Eric Clayberg - Instantiations
1) You should try Swing Designer (companion to GWT Designer). It is completely bi-directional and reads and writes Java Swing code from almost any source. I agree with you that tools that write to an extra (redundant) XML file don't cut it. In fact, the mere existence of those intermediate files

Re: Listener for moving split panel?

2008-10-20 Thread gregor
Hi Shaselai, HSP can be complex in this respect - more details required for pinpoint assistance. However in general: - Use a container panel (maybe Composite?) for your RHS and set it's size to (100%,100%) - Place your RHS widgets in this container and size them in relation to it %-wise. -

Re: Listener for moving split panel?

2008-10-20 Thread shaselai
Hi gregor, On my right side is an Absolutepanel. The API says it doesnt resize automatically and I am using that panel for drag and drop which requires an Absolutepanel so I don't think i can change that panel. Now I tried putting the absolutepanel inside a verticalpanel instead. What happens

Re: Listener for moving split panel?

2008-10-20 Thread gregor
Hi Shaselai, I was half worried you would say AbsolutePanel. If you use one, all bets are off as to how it works in resizing situations - it's basically up to you - I'm not competent to advise you how to best proceed. As I understand it, AbsolutePanel works fixed pixel by pixel over the

Re: what GUI creator are you using ?

2008-10-20 Thread JacoGr
I use IntelliJ IDEA. I actually wan't aware that IDEA had a drag-n-drop GUI designer for GWT. (I know about the GWT support, but though that was just contextual.) GWT Designer for me - not perfect, but more or less does the job. Jaco --~--~-~--~~~---~--~~ You

necetio enviar correos desde gwt

2008-10-20 Thread andres
me gustaria saber si alguiien me puede colaborar con el codigo que se necesita para enviar correos masivos desde gwt Gracias --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

dotnetnuke and GWT

2008-10-20 Thread selfslaves
Is it possible to use GWT generated code with dotnetnuke ? Dotnetnuke has a html editor. Is there a way we can use GWT generated code in it a dotnetnuke site ? any articles of success regarding this ? Thanks! --~--~-~--~~~---~--~~ You received this message

Re: Help me!

2008-10-20 Thread kaefert
1.) Learn English 2.) RTFM @ http://code.google.com/webtoolkit/gettingstarted.html On 19 Okt., 01:54, Nguyen Kim Kha [EMAIL PROTECTED] wrote: Yeh! Thank you very much! I run it very well... But, do you think GWT need the installer? On Oct 19, 3:37 am, Ian Bambury [EMAIL PROTECTED] wrote:

i need implement gwt with email

2008-10-20 Thread andres
i need information about gwt implement with email, i need send email --~--~-~--~~~---~--~~ 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

Feedback on my gwt powered app

2008-10-20 Thread Mike
Hello, i just released the first version of my gwt powered project and like to use this opportunity to thank you for your support! GWT and this group are amazing! Thank you! My little pet project is an image gallery for landmarks/sightseeings, where everyone can join and upload images. It can

Re: Hosted Mode and setFocus()/setTabIndex()

2008-10-20 Thread Geraldo Lopes
Issue 712: Tab key does not change widget focus in Linux GWT Shell. Reported by ted.andrews, Feb 20, 2007 Same for me on gwt 1.5.3 centos 5, java version 1.6.0_05 Java(TM) SE Runtime Environment (build 1.6.0_05-b13) Java HotSpot(TM) Client VM (build 10.0-b19, mixed mode, sharing) On 20

Re: Hosted Mode and setFocus()/setTabIndex()

2008-10-20 Thread Geraldo Lopes
Issue already opened since Feb, 20 2007 Issue 712: Tab key does not change widget focus in Linux GWT Shell. Issue very annoying, plz vote for resolution On 20 out, 07:25, jbdhl [EMAIL PROTECTED] wrote: Should I file an issue in the issue tracker about this problem?

mapControls disappear and openInfoWindowTabs not working

2008-10-20 Thread Ander
mapControls disappear and openInfoWindowTabs not working Hi, I am using and application with gwt, google maps and ext. You can access it at http://debegesa.dreamhosters.com/map/SMap.html This Monday, without any code change, it has stop working. First, the controls to zoom the map and to select

Re: GWT Date and Time serialization

2008-10-20 Thread Jason Essington
The issue here is that you don't seem to like the established behavior of dates. This is not a GWT issue, but rather the well known behavior of dates in general. If you don't want date behavior, then use a format that doesn't exhibit this behavior (Strings tend to work nicely). -jason On

Getting the alignment of a cell from a FlexTable.

2008-10-20 Thread Peter D.
Looking at the docs for FlexTable it seems that it is not possible to to see if any type of alignment has been set on a certain cell. Does anyone know if this is possible. Here is my problem: I'm using gwt-dnd and on a table it is possible to re-order a list. 2 of the 3 cells in this table are

Re: Your opinion sought: Jetty or Tomcat?

2008-10-20 Thread jan
Bruce et all, On behalf of the Jetty team, can I say that we're delighted to hear the GWT team is considering using Jetty for hosted mode. According to NetCraft statistics, Jetty has around 70-80% of the market share of Tomcat for *visible* deployed servers. Of course, as Jetty is embedded in

gwt tomcat jdbc

2008-10-20 Thread jbroquefere
Hello, with eclipse, i have deloped a little application, including a servlet. this servlet connect to my mysql server using jdbc. When i run it into the host mode, everythings perfect. the sql request are ok, etc... when i deploy my app into tomcat, everythings ok too, BUT it seems to fail when

Re: what GUI creator are you using ?

2008-10-20 Thread Tom Hjellming
IntelliJ does not have a d-n-d GUI designer for GWT. I think they were referring to the pretty-basic GWT plug-in that doesn't provide a GWT GUI builder. Tom JacoGr wrote: I use IntelliJ IDEA. I actually wan't aware that IDEA had a drag-n-drop GUI designer for GWT. (I know about the

Re: Deferred binding result type gone after refresh in hosted mode

2008-10-20 Thread Sumit Chandel
Hi Ivo, Thanks for digging around and identifying the potential culprit. I'm checking this out with John to see if this was a new change or existing behaviour that you somehow got around in 1.4.x. In the meantime, could you refer us to the lines of code you traced this down to? After checking

Re: Deferred binding result type gone after refresh in hosted mode

2008-10-20 Thread Sumit Chandel
Hi Ivo, Something that John mentioned could cause issues is if your generator isn't generating unique classnames for unique data. That is, each time the class that the generator would generate on a given run differs from the previous run, the classname of the class it would generate should be

Re: i need implement gwt with email

2008-10-20 Thread Jason Essington
You'll need to do that from the server side ... GWT is bound by what is possible in JavaScript on a web browser, and connecting directly to an email server is not. You can certainly create an email UI that runs in the browser, send the parts of the email (body, to, from, etc) to the

Re: Help me!

2008-10-20 Thread Sumit Chandel
Hi Kim Kha, It's hard to provide support for the problem you're experiencing without more detail. It seems like you're just getting started with GWT and having some trouble getting used to some of the core concepts on setting up and creating a GWT project. I would strongly recommend checking out

Re: Background image

2008-10-20 Thread bc
hey there, You can just add a css style to any panel. For instance, i used firebug to change the style on the box above so that there is a repeating background image of the google logo. The style looks like this. Screenshot http://drop.io/pytdu4r/asset/background-repeat .cb {

Re: GWT 1.5 Float Serialization in a generic Map

2008-10-20 Thread chicoman25
So my mistake for not including the FULL source but I did discover something. The actual code that doesn't work isn't with the MapString, Object but with the @SearchableBoostProperty on the getter. This is an annotation we use for Compass/Lucene to boost/ score a document higher. The

Re: GWT Date and Time serialization

2008-10-20 Thread sim123
Thank you so much Chris, this worked. On Oct 17, 8:49 pm, Chris [EMAIL PROTECTED] wrote: As others replied, this is the expected behavior.  However, I also had the need to make sure the date object was not changed due to different timezones of the client and server.  There is another thread,

Re: what GUI creator are you using ?

2008-10-20 Thread Eric Clayberg - Instantiations
IDEA is a very nice tool and not even remotely dead at all. That is independent of the market for commercial add-ons for it. Just look at their add-on/plug-in pages and you will see exactly what I mean. The number of commercial add-ons is very small. Every IDE usage servey that I have seen

Help me!!!!!!

2008-10-20 Thread savio
hi there, i need to know if i can use a GWT library in main method in java project. please help me --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

RE: Help me!!!!!!

2008-10-20 Thread Paul Sullivan
read the documentation Date: Mon, 20 Oct 2008 16:09:10 -0700 Subject: Help me!! From: [EMAIL PROTECTED] To: Google-Web-Toolkit@googlegroups.com hi there, i need to know if i can use a GWT library in main method in java project. please help me

Re: Help me!!!!!!

2008-10-20 Thread [EMAIL PROTECTED]
I completely agree with Paul's response. But for further clarification: if you need help, you need to include more information. I'm not certain what you are asking, and if I were to guess, I'm not certain why you'd want to do anything like what I think you're asking. The bottom line: please

Re: Selenium IDE problem

2008-10-20 Thread Joe Cole
We haven't used trees, but for everything else we had to use a global id generator: Widget x = ...; Ids.add(x); // set's the id of x to some unique id Joe On Oct 21, 2:25 am, Markuz05 [EMAIL PROTECTED] wrote: I'm trying to use Selenium IDE  to test my web application. Is it possible that

How about such a usage of the history?

2008-10-20 Thread ni43
Hello everyone, I made the program that led the ball to the goal with GWT 1.5. It accompanies the calculation of coordinates of the battleship style. Sample2 : http://www.ab.auone-net.jp/~sawaki/ja/predow3/Gwth.html It shows the position only in a Japanese text without the display in

Bug of shift operation of GWT?

2008-10-20 Thread ni43
I am doubting that there is a bug in bit shift '' of GWT1.5. int num 0xf000f000; num |= num 16; Isn't the result the same as bit shift '' ? Though it is necessary to have dealt sure, as follows, and provisionally. num |= 0x (num 16); Is this a bug of GWT1.5?

Re: Trouble getting splitpanel location/size inside panel.

2008-10-20 Thread Sumit Chandel
Hi shaselai, It seems to me that what you're most interested in is actually the absolute position of the left and right widgets contained in the HorizontalSplitPanel rather than the panel's split position. I believe this makes sense since you want to retrieve and restore layout positions for

Re: Persistent Ghost Connections in Tomcat after GWT App is reloaded

2008-10-20 Thread Sumit Chandel
Hi ky, You're probably more likely to get a better reply on the tomcat-users mailing list since this issue has more to do with using Tomcat rather than working with GWT. You can find a link to the tomcat-users mailing list at the link below: http://tomcat.apache.org/lists.html#tomcat-users

Re: GWTCanvas image distortion

2008-10-20 Thread Sumit Chandel
Hi Thad, Could you post up some code to help reproduce the problem? Also, if you had a public link available to the image you were using for you canvas, that would definitely help find out what's going on. Cheers, -Sumit Chandel On Thu, Oct 16, 2008 at 1:55 PM, Thad [EMAIL PROTECTED] wrote:

Re: Would LOVE some design help

2008-10-20 Thread Sumit Chandel
Hi Andre, What you're planning to do could work, but there are a few thing to note: 1) The UI interaction when submitting Add product to cart messages is entirely a function of the API exposed by the Amazon service. Depending on the control given to you there, you may be able to add products

Does gwt NumberFormat support COMMA as decimal seperator?

2008-10-20 Thread Kelvin
Does gwt NumberFormat support COMMA as decimal seperator? (for LOCALE France etc) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Composite widgets

2008-10-20 Thread rlaferla
I'd like to create a composite widget that contains three widgets: header, body, and footer. These components can be any type of Widget. I want to be able to add my composite widget to a panel just like any other widget. I also want to be able to call setHeader(), setBody() and setFooter() and

Re: Query for row-border styling for a Grid

2008-10-20 Thread Ajay Garg
Thanks alex. It works. Just wonder, that styling is applicable on a cell basis, and not on row basis ;-) Thanks again Ajay Garg On Oct 20, 4:29 pm, alex.d [EMAIL PROTECTED] wrote: Smth. like this probably? for(int i=0; igrid.getRowCount(); i++)    for(int j=0; jgrid.getColumnCount(); j++)  

Re: Composite widgets

2008-10-20 Thread bc
For the most part, i will usually extend flowpanel. Inside the flowpanel you can create your methods, and set the styles that you need to position each section correctly.The header, body, and footer would all be flowpanels(or any panel), and then the set methods will just set them and refresh

Re: Radio Button Bug?

2008-10-20 Thread Arji
Hi, I'm very sorry for the late reply. Here is how I code the radio buttons. Radio rb1 = new Radio(Label1,Group); rb1.addListener(new CheckboxListenerAdapter() { public void onCheck(Checkbox field, boolean

[gwt-contrib] Re: r3781 - in releases/1.6/events: . dev eclipse/dev/windows eclipse/samples/DynaTable eclipse/sampl...

2008-10-20 Thread Thomas Broyer
On Sun, Oct 19, 2008 at 12:38 PM, Emily Crutcher [EMAIL PROTECTED] wrote: I was trying to make it clear that the code was on the 1.6 release branch rather then being branched off trunk, however that may not have been the correct way to do that. Would branches/1.6/events be better? The

[gwt-contrib] Re: Code Review: Visualization API, improved hello world example

2008-10-20 Thread Eric Ayers
Hi Uwe, I can't get the entire patch to apply because I'm missing a file named AbstractDataTable.java from http://gwt-google-apis.googlecode.com/svn/branches/uwe/visualization Did I miss an earlier commit? On Tue, Oct 14, 2008 at 10:51 AM, Uwe Maurer [EMAIL PROTECTED] wrote: Hi, I added a

[gwt-contrib] Re: Code Review: Visualization API, improved hello world example

2008-10-20 Thread Eric Ayers
General: I see this coming out a lot in the hosted mode shell window - do you think it is from our visualization wrappers? [WARN] Malformed JSNI reference 'length'; expect subsequent failures java.lang.NoSuchFieldError: length ... at

[gwt-contrib] Re: Code Review: gwt-google-apis maps Formatting and comment cleanup

2008-10-20 Thread Miguel Méndez
LGTM On Fri, Oct 17, 2008 at 11:35 AM, Eric Ayers [EMAIL PROTECTED] wrote: Hello Miguel, Would you mind reviewing the attached patch? It only changes comments and formatting. The API suffered through a long bout of build breakage. While debugging it, I ran across some comments that were

[gwt-contrib] Re: Code Review: Visualization API, added DataView

2008-10-20 Thread Eric Ayers
LGTM, just address the issue in DataView: M visualization/src/com/google/gwt/visualization/client/Visualization.java LG A visualization/src/com/google/gwt/visualization/client/DataView.java I don't see any real problem, but there is something that needs some kind of documentation, I

[gwt-contrib] Re: Code Review: Visualization API, added DataView

2008-10-20 Thread Uwe Maurer
On Mon, Oct 20, 2008 at 4:15 PM, Eric Ayers [EMAIL PROTECTED] wrote: LGTM, just address the issue in DataView: M visualization/src/com/google/gwt/visualization/client/Visualization.java LG A visualization/src/com/google/gwt/visualization/client/DataView.java I don't see any real

[gwt-contrib] Re: Code Review: Visualization API, added DataView

2008-10-20 Thread Eric Ayers
OK, thanks for setting me straight. LGTM. On Mon, Oct 20, 2008 at 11:44 AM, Uwe Maurer [EMAIL PROTECTED] wrote: On Mon, Oct 20, 2008 at 4:15 PM, Eric Ayers [EMAIL PROTECTED] wrote: LGTM, just address the issue in DataView: M

[gwt-contrib] Code Review: visualization Adds launch scripts to the HelloVisualization demo

2008-10-20 Thread Eric Ayers
Hello Uwe, Attached is a patch that adds launch scripts to the HelloVisualization sample. You have to build the project with 'ant', then the launch scripts get bundled into the staging directory and build/dist/gwt-visualization-0.0.0.tar.gz. If you decompress the tar file, the launch scripts

[gwt-contrib] Re: Code Review: Visualization API, improved hello world example

2008-10-20 Thread Uwe Maurer
On Mon, Oct 20, 2008 at 8:15 PM, Eric Ayers [EMAIL PROTECTED] wrote: One other cleanup: When running under the command line, I found an error: [gwt.javac]

[gwt-contrib] Re: Code Review: Visualization API, improved hello world example

2008-10-20 Thread Uwe Maurer
Hi Eric, thanks for the review! The new patch is attached. On Mon, Oct 20, 2008 at 3:24 PM, Eric Ayers [EMAIL PROTECTED] wrote: General: I see this coming out a lot in the hosted mode shell window - do you think it is from our visualization wrappers? [WARN] Malformed JSNI reference

[gwt-contrib] Re: Code Review: Visualization API, improved hello world example

2008-10-20 Thread Eric Ayers
LGTM except for resizing code below. If you don't want the resizing behavior after all, just expunge it. On Mon, Oct 20, 2008 at 3:11 PM, Uwe Maurer [EMAIL PROTECTED] wrote: Hi Eric, thanks for the review! The new patch is attached. On Mon, Oct 20, 2008 at 3:24 PM, Eric Ayers [EMAIL