Re: Exporting Grid data to MS-Excel

2010-05-30 Thread Sripathi Krishnan
He means 3 *lac http://en.wikipedia.org/wiki/Lakh* rows, which is 300,000 thousand rows. This isn't really a GWT discussion - but 65536 rows is the maximum excel can support. You can however create multiple sheets and get around that. --Sri On 30 May 2010 06:45, mP miroslav.poko...@gmail.com

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

2010-05-30 Thread Magnus
Thanks a log! It seems that its the style of java programming to instantiate new classes all the time. In this case, the normal way seems to be to declare a new class for every menu item and to instantiate each of these classes a single time, just to connect a menu item to a piece of code. Ist

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

2010-05-30 Thread Ian Bambury
The way kozura suggested means that you create a new instance with all the code for every possibility every time (as well as adding extra code for the switch). What have you got against creating a command with just the code that that menu item needs? How does that 'blow up the code in an

does one gwt project support one corresponding html only?

2010-05-30 Thread cy dev
can it support two or more html in the same project? else i need to create one gwt project for one html? 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 google-web-tool...@googlegroups.com. To

Upgrading to Visualization 1.1 with GWT

2010-05-30 Thread zanerock
Let me know if there's a separate group fro this, but I've upgraded to visualization 1.1 today, but all the charts are still rendering in the 1.0 style. I see in the release notes it mentions using 'corechart' instead of the individual packages (like 'pichart') in JavaScript land, but I can't

is one gwt project for one html only?

2010-05-30 Thread cy dev
can one gwt project support more than one html? how to do this? -- 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-tool...@googlegroups.com. To unsubscribe from this group, send email to

Re: deploy gwt project

2010-05-30 Thread pankaj
I think that the files under the war directory *should* be in a standard webapp structure. Just make sure that the .css file is referenced correctly relative to the file it is called in. Although, I have used Maven, in this blog post:

Re: HTML5 Worker

2010-05-30 Thread Joe Thomas
The spec is at http://www.whatwg.org/specs/web-workers/current-work/ It includes an example/tutorial section as well as an excellently understandable spec. ~Joe On Sat, May 29, 2010 at 11:41 AM, Deepak Bammi deepak.ba...@gmail.com wrote: Please provide more info for Worker or just share your

Re: About GWT poject Deployment

2010-05-30 Thread Saima Waseem
Watch New Indian Movies with discounted Price... Visit New Indian Movie.com! http://www.clicknearn.net/3527.html -- 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: How to center a VerticalPanel on page with UiBinder

2010-05-30 Thread BryanPoit
ui:style .centerStyle { width: 800px; margin: 0 auto 0 auto; } /ui:style Is where the definition for style.centerStyle comes from. Uibinder interprets the style elements and they can be accessed using style.stylename. On May 28, 9:19 am, Mike m...@sheridan-net.us

Changing CSS on the fly

2010-05-30 Thread fmod
Hi, is there a way to change a CSS Property inside a Rule definition on the fly. I have defined a rule .myRule { height: 22px; width: 100px; overflow: hidden } I have hundreds of DIV elements with that rule. I will like to change the width property directly on the rule. Without iterating

GWT.runAsync and Command Pattern

2010-05-30 Thread Julio Faerman
Hi, I am trying to split a GWT app that uses the command (action) pattern. The problem is that GWT.create(ActionService.class) causes every subclass of the return and parameter types to be included in the initial fragment. For instance, my action interface is: public interface ActionService

Re: GWT.runAsync and Command Pattern

2010-05-30 Thread Tristan
You might be running into this issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=4412 The compiler simply doesn't do enough analysis to do code split properly when inheritance is involved, staring the issue may help. Cheers On May 30, 7:38 am, Julio Faerman jfaer...@gmail.com

Re: How to center a VerticalPanel on page with UiBinder

2010-05-30 Thread Tristan
have you tried... g:HorizontalPanel width=100% g:Cell horizontalAlignment=ALIGN_CENTER g:VerticalPanel ui:field=verticalPanel ... /g:VerticalPanel /g:Cell /g:HorizontalPanel On May 28, 8:38 am, BryanPoit bryanp...@gmail.com wrote: ui:style         .centerStyle {        

Re: GWT.runAsync and Command Pattern

2010-05-30 Thread federico
yes also i've faced this problem and didn't find any solution i'think the previous issue it's connected with this: http://code.google.com/p/google-web-toolkit/issues/detail?id=2374can=5 On 30 Mag, 15:48, Tristan tristan.slomin...@gmail.com wrote: You might be running into this issue:

Re: GWT.runAsync and Command Pattern

2010-05-30 Thread federico
hi julio, the issue you mentioned exists, anyway your ActionService interface should be: T extends Response, V extends RequestT T execute(V req) throws ActionFailedException; on the other hands it's not possible at compile time to predict wich results are connected with wich requests On 30

Re: does one gwt project support one corresponding html only?

2010-05-30 Thread Stefan Bachert
Hi, you could supply as many host pages as you like. you could supply as many modules as you like. However, in general each browser application run in one browser window. But you can supply more the one in a WAR. Stefan Bachert http://gwtworld.de On 30 Mai, 05:55, cy dev cydevelo...@gmail.com

eclipse: using external jar library - No source code is available for type type; did you forget to inherit a required module?

2010-05-30 Thread Magnus
Hi, I am trying to get started with my first GWT application myApp, and I would like to use my java library (mylib.jar, in this case for a subclass of java.lang.Method: mylib.Method). I am using eclipse and a separate project mylib, which uses an ant script via external tools that builds the

Status of Joda/Goda time, future of Date handling

2010-05-30 Thread Chris Lercher
Hi, I think, many people (including myself) are a little bit unhappy with the current situation of date and time handling a) due to the use of deprecated methods of java.util.Date and b) due to the general weaknesses of the java Date API This topic crops up repeatedly on different forums, as

Re: About GWT poject Deployment

2010-05-30 Thread aditya sanas
fake post should be removed immediately. -- Aditya On Sun, May 30, 2010 at 11:12 AM, Saima Waseem saimawaseem2...@gmail.comwrote: Watch New Indian Movies with discounted Price... Visit New Indian Movie.com! http://www.clicknearn.net/3527.html -- You received this message

Re: is one gwt project for one html only?

2010-05-30 Thread aditya sanas
hi, yeah ofcourse it is absolutely possible to have n number of html pages in ur gwt project. if u wish to have a html page with gwt components then u need to add new module otherwise you have simple html pages as we have in web projects. Cheers -- Aditya On Sun, May 30, 2010 at 9:31 AM, cy

Re: MVP + appController useful for the big projects ?

2010-05-30 Thread Subhrajyoti Moitra
i think one of the mvp frameworks could help. gwt-dispatch,gwt-presenter, mvp4g.. there are more.. HTH. Subhro. On Sun, May 30, 2010 at 11:05 PM, Rizen vianney.dep...@gmail.com wrote: Hello, I'm actually using the MVP pattern with an AppController, as Google advices via this link :

Re: MVP + appController useful for the big projects ?

2010-05-30 Thread Saima Waseem
Watch New Indian Movies with discounted Price... Visit New Indian Movie.com! http://www.clicknearn.net/3527.html -- 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: is one gwt project for one html only?

2010-05-30 Thread Saima Waseem
Watch New Indian Movies with discounted Price... Visit New Indian Movie.com! http://www.clicknearn.net/3527.html -- 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: eclipse: using external jar library - No source code is available for type type; did you forget to inherit a required module?

2010-05-30 Thread kozura
Search the forum for the literally dozens of answers to this... http://groups.google.com/group/google-web-toolkit/search?group=google-web-toolkitq=No+source+code+is+availableqt_g=Search+this+group Not all java can be use in the client code (see JRE emulation) and any external library code must

bikeshed-expense source code (gwt-bikeshed.appspot.com)?

2010-05-30 Thread HBA
Hi, Is the source code for the bikeshed app available? You can find the app here (http://gwt-bikeshed.appspot.com/ Expenses.html). Thanks in advance. -- 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.runAsync and Command Pattern

2010-05-30 Thread Julio Faerman
Would it be possible to wrap / unwrap the request, removing the immediate inheritance or the compiler must generate the type serializers eagerly for all types ever reachable? Thanks for the advice on the interface, Frederico, i hope i can use it. In my case, code splitting is more important than

Re: how to center a panel within another panel?

2010-05-30 Thread enTropy Fragment
I suggest you to re-think the use CellPanels (this includes VerticalPanel, HorizontalPanel and almost every gwt Panel) to create the layout. They end up being html tables and normally you don't want that. The cleanest approach I found was to use only FlowPanels each one with their ID and then use

Re: FastTree in GWT 2.0.3

2010-05-30 Thread hazy1
Fast tree has always had a lot of bugs, we basically took some of the concepts from Fast Tree but wrote our own. On May 28, 5:03 am, jla ner...@gmail.com wrote: Hi, Are there any known problems about the GWT-Incubator fastTree and GWT 2.0.3. I can't seem to be able to get it to work properly.

GWT 2.0.3: Cross-browser problems still?

2010-05-30 Thread Navigateur
When I came into GWT I thought it was going to be write-once for all browsers. Since I've been using it, I've had all kinds of cross- browser problems, in particular with events and graphics, and sometimes widgets. And I've had to do workarounds (which I still haven't fully resolved) to make it

Re: Add a Widget into/onto Grid without resizing Grid Cell/Column

2010-05-30 Thread spierce7
Anyone? Any thoughts? On May 27, 10:51 am, spierce7 spier...@gmail.com wrote: Hey, I'm making a calendar-like application, and right now I'm just messing around with different options. One of the things I absolutely need is to be able to place a group of widgets/panel on a panel on or over a

Re: Status of Joda/Goda time, future of Date handling

2010-05-30 Thread Paul Stockley
I am using gwt-time. I haven't had any issues as yet. However, the biggest problem is that it adds 250 - 300 kb to the project js download. I was careful to avoid the dependency for the initial download fragment. On May 30, 12:36 pm, Chris Lercher cl_for_mail...@gmx.net wrote: Hi, I think,

Re: FastTree in GWT 2.0.3

2010-05-30 Thread Paul Stockley
2.1M1 introduces a new fast tree implementation you might want to take a look at On May 30, 7:25 pm, hazy1 matt.egyh...@gmail.com wrote: Fast tree has always had a lot of bugs, we basically took some of the concepts from Fast Tree but wrote our own. On May 28, 5:03 am, jla ner...@gmail.com

Re: Unable to download gwt-2.0.3.zip

2010-05-30 Thread Luis Daniel Mesa Velasquez
Latest? isn't 2.0.3 the latest? On May 29, 1:35 pm, Deepak Bammi deepak.ba...@gmail.com wrote: Just for information, latest gwt version is also released. Thanks, Dev Deepak Bammi +91.9818.528.834 Direct -- You received this message because you are subscribed to the Google Groups Google

Re: How to run a unittest for a class in client folder of gwt which makes Async calls to the server

2010-05-30 Thread Trung
See this thread http://groups.google.com/group/google-web-toolkit/browse_thread/thread/a870643861023d35 discussing GWT RPC calls from Java On May 28, 3:39 pm, Sumit Somani sumitsom...@google.com wrote: I am an engineering intern and want to write a test for a class which makes a Async

Re: Status of Joda/Goda time, future of Date handling

2010-05-30 Thread Chris Lercher
On May 31, 2:26 am, Paul Stockley pstockl...@gmail.com wrote: I am using gwt-time. I haven't had any issues as yet. However, the biggest problem is that it adds 250 - 300 kb to the project js download. That's massive, and it would be way too much for my project. I wonder, why it's that large -

Optimizing Dev Module with user.agent?

2010-05-30 Thread Andrew Hughes
Hi, I'm told that dev mode run's directly against java classes. Could I expect reduced compile+build times by specifying my specific user.agent when running in dev mode? Is the user.agent even used when running in dev mode? Cheers. p.s. example: Firefox Only (from gwt.xml): set-property

Re: Unable to download gwt-2.0.3.zip

2010-05-30 Thread Deepak Bammi
Please find the latest gwt version in which some bugs are fixed. http://code.google.com/p/google-web-toolkit/downloads/list Thanks, Dev On Mon, May 31, 2010 at 6:42 AM, Luis Daniel Mesa Velasquez luisdanielm...@gmail.com wrote: Latest? isn't 2.0.3 the latest? On May 29, 1:35 pm, Deepak

Re: SplitLayoutPanel, Resizing

2010-05-30 Thread kirtcathey
Hi All. Back again. I have nailed this problem down to a rich text editor resize problem in Firefox. Other browsers work okay, but not great... very jerky. Any other widget resizes. I am now looking at the possible solutions with TinyMCE or just using something rolled with HTML5 as a rich text