Re: New release of the GWT project Tatami

2008-12-23 Thread vgrassaud
Hi, In fact we had created some dojo packages in order to optimize the loading of the components. So, if you use the tatami gfx module, all gfx components will be loaded more quickly. Of course, you can play with Tatami if you want. And tell us your feedback about it and specially on the GFX

Re: GWTExt chart on GWT widgets

2008-12-23 Thread Sanj
Hi Arthur, You are right. I should go in GWT Ext forms for this issue. But GWT- Ext group is not active. So, i put my problem here on Gwt group with the hope for finding the solution of my problem. I know, i am missing one thing, i think there is some problem related to refreshing the charts

Re: So I want to make a better-looking radio group...

2008-12-23 Thread dduck
On Dec 22, 2:13 pm, Kevin Tarn kevn.t...@gmail.com wrote: You can add a dummy Label object into right most side, and setCellWidth of label widget to 100%. A good suggestion, but it doesn't fix the real problem. The table is a ScrollTable with the following style in the CSS .gwt-ScrollTable

Re: Problem in dateformat

2008-12-23 Thread eggsy84
Hi there If it is client side formatting this document should be useful: http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/i18n/client/DateTimeFormat.html Eggsy On Dec 23, 10:17 am, javaz visiona...@gmail.com wrote: Hello , Can any one please tell me how to change the

problem with Date

2008-12-23 Thread arnaud
Hello every one, i write this code to format a date SimpleDateFormat sdf = new SimpleDateFormat (mm/dd/); String date = sdf.format(updatedParameters [i][1]); paramValue.setDateField(sdf.parse(date)); where is a String

Undo/Redo Event Handlings

2008-12-23 Thread Anurag Tripathi
If anybody has any idea on this please let me know - How to catch Keyboard Undo(ctrl+z) and Redo(Ctrl+y) events in a Button ? Its already supported in Rich Text Area as an action of ctrl +z keyPress but need to encapsulate in a Button. The Implementation I'm not finding in RichTextArea.class

Re: problem with Date

2008-12-23 Thread Kevin Tarn
Is updatedParameters[i][1] a Date type of object? Kevin On Tue, Dec 23, 2008 at 8:02 PM, arnaud arnaud.ago...@atosorigin.comwrote: Hello every one, i write this code to format a date SimpleDateFormat sdf = new SimpleDateFormat (mm/dd/); String

Re: Undo/Redo Event Handlings

2008-12-23 Thread todd.sei...@gmail.com
You will probably not find this in RichTextArea source since this functionality is provided by the web browser and not GWT. I believe that you may want to try looking at event previews. This would allow you to capture keyboard input regardless of the widget which has focus because I suspect that

Re: How to copy and rename a GWT project?

2008-12-23 Thread Arthur Kalmenson
Ah that's right, you need to change the HTML file and launchers as well (I don't use launchers since we're using Maven). Nice guide Ian :) -- Arthur Kalmenson On Tue, Dec 23, 2008 at 9:57 AM, Ian Bambury ianbamb...@gmail.com wrote: Hi Fred, There's a quick explanation at the end of day 1 in

Using HTTPRequest.asyncPost ()

2008-12-23 Thread Jag
Hi, I am using asyncGET () to send requests to my server and i am handling the responses. But in one of my case the length of the request url is very huge so i need to send that request through asyncPost(). How can use this asyncPost() to send post requests? How to build the postdata of

Re: StackPanel showStack(-1)

2008-12-23 Thread David E.
Sumit, Thanks for your help. I deceided to not use the StackPanel in this way. I figure they must have had a reason to take away the functionality so I found a different solution. I appreciate your efforts though. Best regards, David On Oct 31, 9:27 pm, Sumit Chandel sumitchan...@google.com

Re: What am I misunderstanding about the event model?

2008-12-23 Thread jay
Sucks, but I've found in a few cases the only way to get what I want is to copy the GWT source (e.g., Horizontal/VerticalSplitPanel) and put it into my code base to make the enhancements I need. (I've not looked at the Tree, so I don't know how much pain would be involved in this route for that

Re: Need for a great GWT GUI library

2008-12-23 Thread Flemming Boller
Hi I have being following this thread with great attention. Current status for my project is that we have used gwt-ext alot last couple of months and we think it looks really good (extjs is a very nice look and feel) However due to thing also mentined in this thread, I am also looking for

Re: What am I misunderstanding about the event model?

2008-12-23 Thread David Hoffer
Sounds good, I'll try that for DoubleClickEventListener. What lego pieces would you use to implement RightClickEventListener? -Dave On Tue, Dec 23, 2008 at 2:59 PM, lukehashj bobwazn...@gmail.com wrote: If you want the double-click event, create a DoubleClickEventListener that extends

Re: How to copy and rename a GWT project?

2008-12-23 Thread Fred Janon
Thanks Ian. Fred On Wed, Dec 24, 2008 at 00:10, Arthur Kalmenson arthur.k...@gmail.comwrote: Ah that's right, you need to change the HTML file and launchers as well (I don't use launchers since we're using Maven). Nice guide Ian :) -- Arthur Kalmenson On Tue, Dec 23, 2008 at 9:57 AM,

GWT increases panel size

2008-12-23 Thread aragorn
Hey i just noticed a strange behavior in GWT. When you create a GWT project and run it in hosted mode and then open it in browser, the size of the output is visibly different. GWT increases the panel dimensions in the browser. I created a project having a panel at the extreme left with width

Re: GWT increases panel size

2008-12-23 Thread sagar
I think i found out what the problem is. The problem seems to be in mozilla firefox which resizes the panels incorrectly. I installed opera on my system and the panel width looks fine just as expected. But now the problem is why mozilla does the resizing and how to correct it. Will i face similar

How can do mapping for another servlet

2008-12-23 Thread avd
Hello sir, Thanks to GWT froups to solve my privious problems,really its very helpful to develop my project. now i have an another problem-I have two programs First is applet and Second is a servlet i using it for upload a image to server side.i had intregate applet in gwt by using Applet

Re: Undo/Redo Event Handlings

2008-12-23 Thread Anurag Tripathi
Yeah, Thats true , simply my objective is to add undo(Ctrl+Z) functionality in Button. _Anurag On Dec 23, 6:18 pm, todd.sei...@gmail.com todd.sei...@gmail.com wrote: You will probably not find this in RichTextArea source since this functionality is provided by the web browser and not GWT. I

Re: How to clear History

2008-12-23 Thread Charan
Hi, After a long time after giving a message with similar question in diffferent way to acheive Is there any way to delete tokens which are added to HIstory using History.newItem(), now i need to delete some tokens which i don't need can you give me any suggestion to acheive this, by overding

Re: How to clear History

2008-12-23 Thread kiran raj
did you try history.clear(); On Wed, Dec 24, 2008 at 12:45 PM, Charan s.chara...@gmail.com wrote: Hi, After a long time after giving a message with similar question in diffferent way to acheive Is there any way to delete tokens which are added to HIstory using History.newItem(), now i

[gwt-contrib] [google-web-toolkit commit] r4366 - releases/1.6/user/test/com/google/gwt/i18n/client

2008-12-23 Thread codesite-noreply
Author: j...@google.com Date: Tue Dec 23 16:21:38 2008 New Revision: 4366 Modified: releases/1.6/user/test/com/google/gwt/i18n/client/NumberFormat_ar_Test.java releases/1.6/user/test/com/google/gwt/i18n/client/NumberFormat_en_Test.java