Re: real gwt serialization

2010-05-29 Thread Sripathi Krishnan
@Kozura - No, not a constant. A constant is hard-coded data. Instead, you need the ability to dynamically generate data, serialize it and store it in the host jsp. Take a look at this blog post - http://www.techhui.com/profiles/blogs/simpler-and-speedier-gwt-with and a follow-up by folks at

Help to find only clickable panel except focuspanel

2010-05-29 Thread Deepak Bammi
Hi All, I need a panel which is clickable.I found focuspanel but it has one drawback in my case that it automatically embeds the input box which causes a problem for me. Please share to access the input box in the focus panel or to find the clickable panel. Thanks, Dev -- You received this

Re: XMLParser failure in IE7

2010-05-29 Thread Thad
A-ha! In my tests I'm loading the XML file to the server with a form submit servlet call, and sending the browser the text value. FormPanel.SubmitCompleteEvent.getResult() doesn't accept *any* MIME type return other than text/html. Using that MIME for XML with Safari and Firefox is fine, but IE

Re: deploy gwt project

2010-05-29 Thread leslie
*Resolved*. I got it. I just did some additional work on my hosting server, deleted old files, redeployed etc and it's working now. The only oddity is that the background color is showing up white. In eclipse it's blue as the stylesheet instructs. But outside of eclipse the background color

Re: Exporting Grid data to MS-Excel

2010-05-29 Thread achilles hector
Hi, I am trying to use JExcel / POI but both are only support, 65536 rows. I have more than 3 lack of rows to export to excel. If any body have any idea . Kindly suggest me. On Thu, Feb 12, 2009 at 6:12 AM, Chhatrapal Sharma chhatrapal.sha...@gmail.com wrote: yup i got a new

Default Custom Field Serializer

2010-05-29 Thread jd
Hi, I want to make the RPC mechanism call GWT.create() to instantiate certain classes when they are deserialized on the client. I know I can do this with a custom field serializer for each class but I want a a more automatic solution. Any ideas? Thanks, John -- You received this message

Menubar - retrieving the selected menu item within the Command object?

2010-05-29 Thread Magnus
Hi, I would like to give all my menu items the same command object: m.addItem (Login, cmd); m.addItem (Logout, cmd); m.addItem (Register,cmd); ... Is it possible to retrieve the selected menu item within the command object's method execute? The reason is that I want to keep my code

Re: Help to find only clickable panel except focuspanel

2010-05-29 Thread Stefan Bachert
Hi Deepak, I use focusPanel with a ClickHandler for the tab of an own TabPanel. I don't understand what your problem is? Did you also added a textbox into the focus panel? Or do you call the focus marquise as input box? When yes, remove the attribute tabIndex. (getElement().removeArribute())

Re: Will gwt 2.1 support Servlet 3.0 ?

2010-05-29 Thread Flueras Bogdan
Why not use the Atmosphere framework? https://atmosphere.dev.java.net/ It will try to use Servlet 3.0 by default, if this is unavailable it will use container native implementation (continuations for Jetty, AIO for Tomcat, Grizzly for GF). If these are unavailable, it will happily fallback to a

Re: No new web application project button

2010-05-29 Thread Stefan Bachert
Hi, When there are no GWT buttons visible, the google eclipse plugin is probably not installed. Could you find Window-Preferences-Google ? NO- something went wrong with installing. Yes? Do you have a SDK installed? Stefan Bachert http://gwtworld.de On 28 Mai, 23:34, Andrew anyel...@gmail.com

Re: Will gwt 2.1 support Servlet 3.0 ?

2010-05-29 Thread Stefan Bachert
Hi Smiley, to my knowlegde tomcat and jetty are working on servlet 3.0 but none has been released Stefan Bachert http://gwtworld.de On 28 Mai, 23:16, Smiley sergiumar...@gmail.com wrote: I'm wondering if the gwt 2.1 release will include the Servlet 3.0 specification? I'm currently using jetty

Re: How do i implement in a ListBox a select options trick I do in HTML

2010-05-29 Thread Stefan Bachert
Hi Rob, just use css. There is a selector for the first item (class:first- child). When css3 is acceptable to you, more selectors are available. An other way may be to give the first option a dedicated class. However, GWT does not make it easy to do so. Stefan Bachert http://gwtworld.de On 28

Re: how to center a panel within another panel?

2010-05-29 Thread Stefan Bachert
Hi magnus, you can not use DockLayout to center a widget. Stefan Bachert http://gwtworld.de On 28 Mai, 20:22, Magnus alpineblas...@googlemail.com wrote: Hi, I use DockLayoutPanel as the RootPanel for my browser window. And I want to place another child panel within the dockpanels center.

wrapping existing HTML form

2010-05-29 Thread xfyre
I need to wrap an existing HTML instead of creating widgets dynamically, so that end user will have the entire form displayed before initialization of GWT components. But then there is a problem: if you attach RootPanel to an existing div element and then use Widget.wrap ( element ) for the

Re: GWT RPC calls from java

2010-05-29 Thread Stefan Bachert
Hi, I agree with you not to use GWT-RPC for anything else then the gui- client. It is very likely that an other access source have special demands which collides with GWT-RPC. (Maybe a different kind of authentication) Stefan Bachert http://gwtworld.de On 28 Mai, 18:10, mikedshaf...@gmail.com

concurrency problem - how to make the program wait?

2010-05-29 Thread Mark
Hello, I've got a strange (at least for me) problem: Start.java: new RetrieveDeck(deck); // this starts a new query to the server where it gets a json object System.out.println(deck + size: + deck.size()); // get debug information RetrieveDeck.java: public RetrieveDeck(FlashCardList deck)

Re: concurrency problem - how to make the program wait?

2010-05-29 Thread Paul Robinson
Take a look at the great beer story: http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/faca1575f306ba0f?pli=1 This story should be included in Google's GWT FAQ Paul Mark wrote: Hello, I've got a strange (at least for me) problem: Start.java: new RetrieveDeck(deck);

Re: concurrency problem - how to make the program wait?

2010-05-29 Thread Mark
Thank you. This story is really great. It solved my problem ;) I was still thinking in a wrong way. Thanks again. Mark On 29 Mai, 17:34, Paul Robinson ukcue...@gmail.com wrote: Take a look at the great beer story:http://groups.google.com/group/Google-Web-Toolkit/browse_thread/threa... This

Re: GWT Developer Plugin is not found in Firefox

2010-05-29 Thread Raphaël Brugier
Hi, I am sorry but this solution didn't work for me. I didn't understand if the symlink to create is from libnspr4.so.0d to libnspr4.so as mentionned there or from libnspr4.so.0d to libnspr4.so as mentionned in this thread : https://groups.google.com/group/google-web-toolkit/msg/4695e012cb9001e0

Re: No new web application project button

2010-05-29 Thread Andrew
The plugin and the SDKs are installed and Google does not show up in Window-Preferences. I have tried uninstalling and reinstalling the plugin and SDKs and I still have the same problem. On May 29, 8:46 am, Stefan Bachert stefanbach...@yahoo.de wrote: Hi, When there are no GWT buttons visible,

Re: deploy gwt project

2010-05-29 Thread aditya sanas
that is good cheers -- Aditya On Sat, May 29, 2010 at 5:08 PM, leslie web...@me.com wrote: *Resolved*. I got it. I just did some additional work on my hosting server, deleted old files, redeployed etc and it's working now. The only oddity is that the background color is showing up

Re: Help to find only clickable panel except focuspanel

2010-05-29 Thread Deepak Bammi
Hi Stefan, Thanks for your response. I'm using focuspanel to create a simple div element which is clickable so that i can embed any widget. e.g Using UiBinder. gwt:FocusPanel gwt:FlowPanel // Widget. /gwr:FlowPanel /gwt:FocusPanel The above code creates two div element

Re: Unable to download gwt-2.0.3.zip

2010-05-29 Thread Deepak Bammi
Just for information, latest gwt version is also released. Thanks, Dev 2010/5/29 Luis Daniel Mesa Velásquez luisdanielm...@gmail.com I tried downloading it 5 times, i used JDownloader in most and i use Opera for browsing so i tried downloading through that too... seems the cloud is just

Re: how to center a panel within another panel?

2010-05-29 Thread kozura
You can place equal sized panels in the left/right (and/or top/bottom, not sure how you're trying to center) of the DockLayoutPanel, before adding the center panel. The center panel will then be centered between them. But note with the layout panel methodology, the center panel will take the

Re: HTML5 Worker

2010-05-29 Thread Deepak Bammi
Please provide more info for Worker or just share your knowledge. Thanks, Dev On Sun, May 23, 2010 at 1:05 AM, Thomas Broyer t.bro...@gmail.com wrote: On 22 mai, 19:14, Stefan Bachert stefanbach...@yahoo.de wrote: Hi, I just read something about HTML5 feature. One is Worker. Does

Re: wrapping existing HTML form

2010-05-29 Thread Thomas Broyer
On 29 mai, 17:11, xfyre ilya.obsha...@gmail.com wrote: I need to wrap an existing HTML instead of creating widgets dynamically, so that end user will have the entire form displayed before initialization of GWT components. But then there is a problem: if you attach RootPanel to an existing

Re: How do i implement in a ListBox a select options trick I do in HTML

2010-05-29 Thread Thomas Broyer
On 28 mai, 20:24, Rob Tanner caspersg...@gmail.com wrote: I'm rewriting some existing apps using GWT and I've come across a GUI issue.  In many cases where I have used a select element as a pull down menu (only 1 item visible at a time), I leave the first item empty and disabled.  The user

Re: KeyPressHandler tips with keys canceling

2010-05-29 Thread Navigateur
mariyan, I'm having all sorts of problems with key event handling in Internet Explorer (not Firefox), but if I'm to understand your question correctly, you simply want to know if a character that's being typed is a non-number or not (so you can delete it immediately and maybe inform the user that

Re: Exporting Grid data to MS-Excel

2010-05-29 Thread mP
What is 3 lack of rows as a simple number? If you need to export more than 65536 rows and poi/jexcel can't handle that large amount maybe you need to ask the respective communities of eachnof those libs. It can't be a coincidence both libs only support 65536 rows, does excel support more than

About GWT poject Deployment

2010-05-29 Thread Sabbir
i tried to deploy my simple gwt project into local Apache server by copying all the contents of war folder to a newly created folder with the same name as my project inside the root directory. now when i run, i can see the interface page, however the RPC call is not failing. can anyone explain on

Re: About GWT poject Deployment

2010-05-29 Thread kozura
You need a tomcat/jetty/similar server to run the actual java servlet with your server-side code, apache won't run that for you. Sortof discussed here, or you can google either of those: http://code.google.com/webtoolkit/doc/latest/DevGuideDeploying.html#DevGuideDeployingServletContainerUsingRPC

[gwt-contrib] RE: Improving event handling, as initiated in 1.6

2010-05-29 Thread Robert Hanson
I was trying to implement the File API using GWT's events, and I came across this post and others. There is also an issue for this, which was accepted, but the last comment is from 2008 (http:// code.google.com/p/google-web-toolkit/issues/detail?id=2562). Just wondering if this is in the works