Re: Real-time app: best approach

2010-12-31 Thread Jeff Schwartz
You didn't mention if the memory usage you reported is for the server or for the client which would help further the discussion along. On Dec 31, 2010 9:09 AM, remuera brain...@web.de wrote: Hello, I've developed an app using GWT 2.1 and GXT 2.2.1 and having these problems: 1) It is a

Happy New Year

2010-12-31 Thread Jeff Schwartz
Happy New Year to you all! -- *Jeff Schwartz* -- 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 google-web-toolkit

Re: GWT - Thin or Fat Client

2010-12-29 Thread Jeff Schwartz
/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- 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 google-web-toolkit+unsubscr

Is GWT MVP Appropriate For Modeless Application?

2010-12-23 Thread Jeff Schwartz
. Do you think the current GWT implementation of MVP would be appropriate - meaning would it be able to handle my use case of using modeless views as described above? Thanks in advance, Jeff -- *Jeff Schwartz* -- You received this message because you are subscribed to the Google Groups Google

Re: Centering an image in a SimplePanel

2010-12-23 Thread Jeff Schwartz
options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- 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

Re: How do you deal with dead EvenHandlers?

2010-12-22 Thread Jeff Schwartz
-tool...@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz

Re: How do you deal with dead EvenHandlers?

2010-12-21 Thread Jeff Schwartz
%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: Dev Mode Font Size != Production Mode Font Size

2010-12-21 Thread Jeff Schwartz
g.georgovassi...@gmail.com wrote: Hello Jeff, Just checking: you havent't by accident enabled any zooming? Resetting the dev mode browser (Ctrl + 0) doesn't normalize the fonts back I guess? On Dec 17, 5:54 pm, Jeff Schwartz jefftschwa...@gmail.com wrote: Yes,, I can. I will do so later

Re: UiBinder or GWT Designer

2010-12-21 Thread Jeff Schwartz
this group, send email to google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- You received this message because you

Re: UiBinder or GWT Designer

2010-12-21 Thread Jeff Schwartz
://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- 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

Re: HTTP Session Problem

2010-12-21 Thread Jeff Schwartz
It would probably help to know if this is in dev or prod. On Dec 21, 2010 9:22 AM, skippy al.leh...@fisglobal.com wrote: I am using this in a serviceImpl class: HttpSession session = getThreadLocalRequest().getSession(); Sometimes when a user has two tabs in IE opened to different logons to

Re: How do you deal with dead EvenHandlers?

2010-12-21 Thread Jeff Schwartz
options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- 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

Re: I've updated my blog article today

2010-12-20 Thread Jeff Schwartz
...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

How do you deal with dead EvenHandlers?

2010-12-20 Thread Jeff Schwartz
related to dead event handlers so maybe I am worrying over nothing but then again... Am I misreading this and over complicating this or is this something that I need to address? Thanks in advance. -- *Jeff Schwartz* -- You received this message because you are subscribed to the Google Groups Google

Re: How do you deal with dead EvenHandlers?

2010-12-20 Thread Jeff Schwartz
-web-toolkit%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

I've updated my blog article today

2010-12-19 Thread Jeff Schwartz
Hi All, I've update my blog article today which you can read at http://jeff-schwartz.blogspot.com/2010/11/screenshots-of-love-my-vehicle-on-web.html. I've added some new screen shots as well as a few comments on dom manipulation. -- *Jeff Schwartz* -- You received this message because you

Re: Dev Mode Font Size != Production Mode Font Size

2010-12-17 Thread Jeff Schwartz
Yes,, I can. I will do so later. On Dec 17, 2010 10:22 AM, Chris Conroy con...@google.com wrote: Jeff, Can you create a small reproduction case for this issue? On Tue, Dec 14, 2010 at 12:37 PM, Jeff Schwartz jefftschwa...@gmail.com wrote: Hi Chris, ... -- You received this message

Re: execute same code for different widget event handle

2010-12-16 Thread Jeff Schwartz
Have both handlers call the same routine On Dec 16, 2010 7:45 AM, pieceovcake bira...@gmail.com wrote: this works great @UiHandler(streetName) void handleStreetNameKeyPress(KeyPressEvent e) { // code } but i want to execute the same handleStreetNameKeyPress triggered from another field on the

Re: execute same code for different widget event handle

2010-12-16 Thread Jeff Schwartz
Yup On Dec 16, 2010 8:30 AM, Subhrajyoti Moitra subhrajyo...@gmail.com wrote: a funny workaround. @UiHandler(streetName) void handleStreetNameKeyPress(KeyPressEvent e) { handleCommonKeyPressEvent(e); } @UiHandler(streetNumber) void handleStreetNameKeyPress(KeyPressEvent e) {

Dev Mode Font Size != Production Mode Font Size

2010-12-14 Thread Jeff Schwartz
to have to run it on the production server in order to get an accurate rendering which is something I will not be able to do once the application goes live. Any clues on this? Is this a known issue? Is there something I can do code-wise to have fonts rendered accurately? Thank you. -- *Jeff

Re: Global Widgets

2010-12-13 Thread Jeff Schwartz
-toolkit%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: Sort on Column in CellTable

2010-12-13 Thread Jeff Schwartz
On Dec 10, 12:26 pm, Jeff Schwartz jefftschwa...@gmail.com wrote: You are absolutely right about the async data provider. With large data sets then this is absolutely the way to go. I thought though that you were talking about how to sort the data once it was being viewed in the client

Re: Sort on Column in CellTable

2010-12-13 Thread Jeff Schwartz
(from the user's perspective) aren't already down, request the next one that isn't local. (I.E. if page 2 comes back, and the user is on page 1, then save the results, and fire off a request for page 3.) Reasonable? Workable? Thanks, Greg On Dec 13, 11:10 am, Jeff Schwartz jefftschwa

Re: Sort on Column in CellTable

2010-12-10 Thread Jeff Schwartz
at http://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- 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

Re: Sort on Column in CellTable

2010-12-10 Thread Jeff Schwartz
don't use those). Greg On Dec 10, 9:48 am, Jeff Schwartz jefftschwa...@gmail.com wrote: When the user clicks on a column header you would get the list of data via the ListDataProvider associated with the table and sort the list as per the needs of your application. You can maintain state

Development Mode Font Sizes Transposed In Firefox

2010-12-10 Thread Jeff Schwartz
to have to run it on the production server in order to get an accurate rendering which is something I will not be able to do once the application goes live. Any clues on this? Is there something I can do code-wise to have fonts rendered acurately? -- *Jeff Schwartz* -- You received this message

Re: Does SimplePager have to be subclassed in order for the last page button to work?

2010-12-10 Thread Jeff Schwartz
, Jeff Schwartz jefftschwa...@gmail.com wrote: I am using a SimplePager but the last page button is never enabled. I didn't subclass SimplePager. Doe it need to be? Thanks in advance. Jeff -- Jeff -- You received this message because you are subscribed to the Google Groups Google Web

Re: How to handle application state ?

2010-12-07 Thread Jeff Schwartz
...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- 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

Re: Retrieve original Widget object from bubbled event ?

2010-12-07 Thread Jeff Schwartz
-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- You received this message because you are subscribed to the Google Groups Google Web

Re: Retrieve original Widget object from bubbled event ?

2010-12-07 Thread Jeff Schwartz
/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- 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 google-web-toolkit

Re: Retrieve original Widget object from bubbled event ?

2010-12-07 Thread Jeff Schwartz
. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- You received this message because

Re: GWTCanvas and IE8

2010-12-07 Thread Jeff Schwartz
options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- 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

Re: Retrieve original Widget object from bubbled event ?

2010-12-07 Thread Jeff Schwartz
to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff

Re: GWT JavaDoc failures KeyPress v. KeyDown

2010-12-07 Thread Jeff Schwartz
?hl=en. -- *Jeff Schwartz* -- 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 google-web-toolkit+unsubscr

Re: Retrieve original Widget object from bubbled event ?

2010-12-07 Thread Jeff Schwartz
+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group

Re: GWT JavaDoc failures KeyPress v. KeyDown

2010-12-07 Thread Jeff Schwartz
to have to dig in to that web BS (like worrying about IE vs. FF). If that IS GWT's purpose, then their documentation sucks, and is not in line with their purpose. If that ISN'T GWTs purpose, what is? Greg On Dec 7, 11:24 am, Jeff Schwartz jefftschwa...@gmail.com wrote: Hi Greg, I have been

Re: How to handle application state ?

2010-12-06 Thread Jeff Schwartz
at http://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- 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

Re: How to handle application state ?

2010-12-06 Thread Jeff Schwartz
. - Mittal On Dec 6, 9:47 am, Jeff Schwartz jefftschwa...@gmail.com wrote: In your case the state you want to preserve seems to be associated with a particular user, not the application, so you can use either cookies or servlet session state to persist the information when the user logs

Re: How to handle application state ?

2010-12-06 Thread Jeff Schwartz
into HashMap on client side. But how do I share this HashMap on client side among different screens such as Header, Navigation etc. (Other than passing HashMap to these screens via some setter methods) Mittal On Dec 6, 11:23 am, Jeff Schwartz jefftschwa...@gmail.com wrote: You shouldn't

Re: GWT JavaDoc failures KeyPress v. KeyDown

2010-12-04 Thread Jeff Schwartz
that, you should stop wasting time and just not write anything. Do you disagree? What % of the GWT JavaDoc actually answer those questions? 1%? 10%? Greg On Dec 3, 1:09 pm, Jeff Schwartz jefftschwa...@gmail.com wrote: KeyPress - triggered when the user presses a key and releases it (key down

Re: To smart GWT or not

2010-12-04 Thread Jeff Schwartz
-web-tool...@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz

Re: GWT JavaDoc failures KeyPress v. KeyDown

2010-12-03 Thread Jeff Schwartz
...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- 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

Re: CellTable not updating

2010-12-02 Thread Jeff Schwartz
-web-toolkit%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- 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 to get rid of these d... scrollbars!!! :-/

2010-11-30 Thread Jeff Schwartz
://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- 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 google-web

Re: Help me to get rid of these d... scrollbars!!! :-/

2010-11-29 Thread Jeff Schwartz
email to google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- You received this message because you are subscribed to the Google

Re: Help me to get rid of these d... scrollbars!!! :-/

2010-11-29 Thread Jeff Schwartz
...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: Help me to get rid of these d... scrollbars!!! :-/

2010-11-29 Thread Jeff Schwartz
and newer as it forces it out of quirky mode and into standard compliant mode. Jeff On Mon, Nov 29, 2010 at 1:34 PM, Jeff Schwartz jefftschwa...@gmail.comwrote: http://www.w3.org/TR/CSS2/box.html http://www.456bereastreet.com/archive/200612/internet_explorer_and_the_css_box_model/ On Mon

Re: Help me to get rid of these d... scrollbars!!! :-/

2010-11-29 Thread Jeff Schwartz
at 2:56 PM, Magnus alpineblas...@googlemail.comwrote: Hi Jeff, why is this a hack? Why not use it? Magnus On Nov 29, 7:40 pm, Jeff Schwartz jefftschwa...@gmail.com wrote: BTW, you can use a hack: body{ padding:0; margin:0; overflow:hidden

Re: Help me to get rid of these d... scrollbars!!! :-/

2010-11-29 Thread Jeff Schwartz
email to google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- You received this message because you are subscribed

New blog article about my latest GWT project

2010-11-27 Thread Jeff Schwartz
I've created a new blog article with screen shots about my latest GWT project. If you are interested please point your browser to http://jeff-schwartz.blogspot.com/2010/11/screenshots-of-love-my-vehicle-on-web.html . I will be updating the article periodically as development of the application

Re: using hyperlink to process commands?

2010-11-27 Thread Jeff Schwartz
...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: using hyperlink to process commands?

2010-11-26 Thread Jeff Schwartz
. -- *Jeff Schwartz* -- 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 google-web-toolkit+unsubscr...@googlegroups.com

Re: using hyperlink to process commands?

2010-11-25 Thread Jeff Schwartz
...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group

CellTable CSS Styling Not Possible?

2010-11-22 Thread Jeff Schwartz
for CellTable do not indicate the CSS selectors that CellTable uses. Am I to conclude then that it is not possible to style a CellTable using CSS? -- *Jeff Schwartz* -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: CellTable CSS Styling Not Possible?

2010-11-22 Thread Jeff Schwartz
=en. -- *Jeff Schwartz* -- 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 google-web-toolkit+unsubscr

Re: CellTable CSS Styling Not Possible?

2010-11-22 Thread Jeff Schwartz
/group/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- 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 google-web

Re: setFocus for TextBox does not work?

2010-11-21 Thread Jeff Schwartz
...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group

How do you style a SimplePager?

2010-11-20 Thread Jeff Schwartz
css selectors such as td {} because I don't want to affect the way other tables in the view are rendered. Thanks in advance. -- *Jeff Schwartz* -- 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

Re: Request order

2010-11-20 Thread Jeff Schwartz
to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff

Re: What should I learn , Google Web Toolkit or Jquery ?

2010-11-19 Thread Jeff Schwartz
-toolkit?hl=en. -- *Jeff Schwartz* -- 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 google-web-toolkit+unsubscr

Re: GWT client-side thread or asynchronous call ?

2010-11-19 Thread Jeff Schwartz
-toolkit?hl=en. -- *Jeff Schwartz* -- 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 google-web-toolkit+unsubscr

Re: GWT client-side thread or asynchronous call ?

2010-11-18 Thread Jeff Schwartz
email to google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- You received this message because you are subscribed to the Google

Re: BigDecimal SerializationException

2010-11-18 Thread Jeff Schwartz
://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz* -- 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 google-web

Re: GWT client-side thread or asynchronous call ?

2010-11-18 Thread Jeff Schwartz
. -- *Jeff Schwartz* -- 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 google-web-toolkit+unsubscr...@googlegroups.com

Re: cannot create servlet in Eclipse helios

2010-11-18 Thread Jeff Schwartz
-helios-SR1- win32.zip. Now trying other versions. On Nov 14, 1:11 pm, Jeff Schwartz jefftschwa...@gmail.com wrote: Have you tried deleting your Eclipse installation getting installing the latest from Eclipse.org? It would mean you would have to install all your Eclipse

Chrome specific rendering issue that works in Safari

2010-11-17 Thread Jeff Schwartz
to the keyboard and the mouse wheel. -- *Jeff Schwartz* -- 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 google-web

Re: What is the correct Eclipse project layout/configuration when using GIN

2010-11-15 Thread Jeff Schwartz
Anyone? On Sun, Nov 14, 2010 at 8:44 AM, Jeff Schwartz jefftschwa...@gmail.comwrote: Hi all, I am 'slowly' converting an existing GWT 2.1 project over to use MVP. I want to follow the related best practice of using GIN injection on the client side and GUICE injection on the server side

What is the correct Eclipse project layout/configuration when using GIN

2010-11-14 Thread Jeff Schwartz
any documentation that specifically states where it should reside and how to configure Eclipse to use it during the build process. Any ideas? Thanks in advance. *Jeff Schwartz* -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: cannot create servlet in Eclipse helios

2010-11-14 Thread Jeff Schwartz
-web-tool...@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- *Jeff Schwartz

Re: Performance improvements of GWT2.1 for long-based computations

2010-11-11 Thread Jeff Schwartz
Those numbers are quite impressive but what I find equally impressive is just how much faster Chrome is over the other browsers, including FF beta. BTW I know GWT doesn't fully suppoMS IE9b but it would be interesting to see how stands in relation to the other browsers. Jeff On Thu, Nov 11, 2010

Re: Performance improvements of GWT2.1 for long-based computations

2010-11-11 Thread Jeff Schwartz
Sorry, I meant support MS IE9b. On Thu, Nov 11, 2010 at 6:45 AM, Jeff Schwartz jefftschwa...@gmail.comwrote: Those numbers are quite impressive but what I find equally impressive is just how much faster Chrome is over the other browsers, including FF beta. BTW I know GWT doesn't fully suppoMS

Re: FormPanel: why it extends SimplePanel?

2010-11-09 Thread Jeff Schwartz
Add an HtmlPanel to it and then add your widgets to the HtmlPanel. Jeff On Tue, Nov 9, 2010 at 3:34 PM, pash7ka pash...@gmail.com wrote: Is there a good reason for FormPanel to extend SimplePanel and not some other panel (like HTMLPanel)? The problem with SimplePanel is the restriction to

Re: can't import into eclipse using mojo.codehaus.org gwt-maven-plugin 2.1.0

2010-11-08 Thread Jeff Schwartz
Try the import from File System option. On Mon, Nov 8, 2010 at 10:32 AM, cri chuck.irvine...@gmail.com wrote: The docs at http://mojo.codehaus.org/gwt-maven-plugin/ say that generated projects can then be imported as existing project into Eclipse. This isn't immediately possible since the

Re: widget celltable how clear before re-populate

2010-11-08 Thread Jeff Schwartz
Using one of the concrete classes AsyncDataProvider or ListDataProvider whose base class is AbstractDataProvider provides a very efficient mechanism for accessing your widget's underlying data source as well as for manipulating the display of the data itself. Once a ListDataProvider is setup you

Re: GWT + JDO (GAE)

2010-11-07 Thread Jeff Schwartz
+1 On Sun, Nov 7, 2010 at 5:46 AM, Shawn Brown big.coffee.lo...@gmail.comwrote: Hi, I've been using JDO these weeks. I've followed the tutorial at GAE Docs, and I learned how to create and get entity objects. It just my opinion based on struggling with JDO that objectify is much easier

Help needed for [ERROR] [lmv] Stack overflow; to increase the stack size, use the -Xss flag at startup (java -Xss1M ...)

2010-11-07 Thread Jeff Schwartz
When running in development mode I get the following error: [ERROR] [lmv] Stack overflow; to increase the stack size, use the -Xss flag at startup (java -Xss1M ...) 1) Is this error common or does it indicate something seriously wrong with my application? 2) What how do I configure to avoid

Re: Help needed for [ERROR] [lmv] Stack overflow; to increase the stack size, use the -Xss flag at startup (java -Xss1M ...)

2010-11-07 Thread Jeff Schwartz
Thanks, Jeff. Xmx was and is currently set at 512m. I upped my stack memory to 50m but still throws the same error. Ideas, anyone? Jeff On Sun, Nov 7, 2010 at 12:22 PM, Jeff Chimene jchim...@gmail.com wrote: On 11/07/2010 09:17 AM, Jeff Schwartz wrote: Thanks, Jeff. I modified my run

Re: Help needed for [ERROR] [lmv] Stack overflow; to increase the stack size, use the -Xss flag at startup (java -Xss1M ...)

2010-11-07 Thread Jeff Schwartz
somethingCreatedEvent) { _somethingCreated(somethingCreatedEvent); } }); Of course this fixed the problem I've reset my JVM parameters back to the state they were in prior to having been so stupid. :) Jeff On Sun, Nov 7, 2010 at 3:28 PM, Jeff Schwartz jefftschwa

Re: Database data and GWT applications

2010-11-03 Thread Jeff Schwartz
You can use gwt the App Engine Datastore but you have to use the App Engine Datastore api. There is no connection string required. Check out google docs for the app engine datastore. On Wed, Nov 3, 2010 at 1:20 PM, OS osav...@gmail.com wrote: Hello, This is my first posting here so I'm sorry

Does SimplePager have to be subclassed in order for the last page button to work?

2010-11-03 Thread Jeff Schwartz
I am using a SimplePager but the last page button is never enabled. I didn't subclass SimplePager. Doe it need to be? Thanks in advance. Jeff -- Jeff -- 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: Performance issues with large number of divs

2010-11-02 Thread Jeff Schwartz
need to tie in to the GWT event model so that I could capture when people click on this text, firing through all my presenters and event bus. (I just realised that I missed that bit off the first message). Perhaps though that is fairly trivial? Chris On Oct 30, 1:42 pm, Jeff Schwartz

Re: Page Navigation and Unique URLs

2010-11-02 Thread Jeff Schwartz
Use History tokens and construct your views accordingly. Each unique url would have a unique history token. Your History listener then just needs to construct views dictated by the value of the current history token. History is also appropriate for users who might want to save a bookmark to a

Re: UiBinder fails after upgrading to gwt 2.1.0

2010-11-02 Thread Jeff Schwartz
Is it possible to post both the uibinder's xml and java class files? It would help. Thanks. On Tue, Nov 2, 2010 at 12:03 PM, pgraham philip.robert.gra...@gmail.comwrote: Hi all, After upgrading to gwt 2.1.0 I get the following exception when starting up hosted mode: onModuleLoad() threw an

Re: Announcing GWT 2.1

2010-11-01 Thread Jeff Schwartz
When targeting App Engine it isn't developer productivity I am so concerned about but rather user experience as well as cascading failures caused by an initial request failure should the additional time required to fire up Spring DI cause the initial request to go over the allotted total time as

Re: No GWT Developer Plugin for Chrome on OSX

2010-11-01 Thread Jeff Schwartz
I don't think they are running all Macs. I think they have given up Windows but offer a choice of Mac or Linux. Jeff On Sat, Oct 30, 2010 at 10:55 AM, SteveG steven.gent...@gmail.com wrote: See subject. Why is this - I thought Google was running all Macs now - and this product is missing

Re: for(;;) with 2.01

2010-11-01 Thread Jeff Schwartz
As an aside, do while is semantically much 'cleaner' as is while(boolean) IMHO :) On Fri, Oct 29, 2010 at 5:16 PM, marcusucubi marcusuc...@gmail.com wrote: Hi, I had a loop (using a for(;;) {} ) in my GWT code. When I moved to 2.01, the loop acted weird. (the function with the loop would

Re: Announcing GWT 2.1

2010-11-01 Thread Jeff Schwartz
On Mon, Nov 1, 2010 at 8:22 AM, Thomas Broyer t.bro...@gmail.com wrote: Well, except that Guice for instance (and I believe JavaEE 6 too, as it's based on JSR 330, lead by Bob Lee, creator of Guice) does not use an XML file. Yes however I was specifically speaking to Spring DI. Isn't that

Re: Announcing GWT 2.1

2010-11-01 Thread Jeff Schwartz
On Mon, Nov 1, 2010 at 9:04 AM, Jeff Schwartz jefftschwa...@gmail.comwrote: On Mon, Nov 1, 2010 at 8:22 AM, Thomas Broyer t.bro...@gmail.com wrote: Well, except that Guice for instance (and I believe JavaEE 6 too, as it's based on JSR 330, lead by Bob Lee, creator of Guice) does not use

Re: Announcing GWT 2.1

2010-10-31 Thread Jeff Schwartz
are not appreciated regardless of difference of opinion. Jeff On Sun, Oct 31, 2010 at 5:30 AM, Thomas Broyer t.bro...@gmail.com wrote: On 30 oct, 23:15, Jeff Schwartz jefftschwa...@gmail.com wrote: Excellent! Thank you for the information. I still however have to wait until support for DAOs embeded

Re: Announcing GWT 2.1

2010-10-31 Thread Jeff Schwartz
Hi Thomas, No hard feelings, I assure you, and I think your English is very good so please don't feel insecure. I apologize if I came off with an attitude; I didn't mean to, but it was early in the morning and I didn't have my 1st cup of coffee :) Roo is a Spring Source technology as is STS

Re: About widgets management

2010-10-31 Thread Jeff Schwartz
On Thu, Oct 28, 2010 at 6:55 AM, Pablo G.F blay...@gmail.com wrote: But when I create the menu I have to write the behaviour of each widget (when hide/show etc), so I have to instance them. I know what you mean by using Singleton but with that approach I can specify the behaviour, because

Re: Performance issues with large number of divs

2010-10-30 Thread Jeff Schwartz
Setting inner text or html for each item will be very, very slow if done on the client. I'd generate all the items inside a parent container on the server in a string and send that back to the client. Serializing the strong for transport will be very quick. On the client when you get the result

Re: Performance issues with large number of divs

2010-10-30 Thread Jeff Schwartz
indicator so the user knows that there is something 'cooking'. This is a very 'ajaxian' way of doing things. Jeff On Sat, Oct 30, 2010 at 9:28 AM, Jeff Schwartz jefftschwa...@gmail.comwrote: Setting inner text or html for each item will be very, very slow if done on the client. I'd

Re: Announcing GWT 2.1

2010-10-30 Thread Jeff Schwartz
I haven't read up in detail on the new RequestFactory implementation except for the information I've read here on the group. I gather from what I've read then that RequestFactory is totally data specific and its only intention is to persist any data that has been changed on the client back to the

Re: Announcing GWT 2.1

2010-10-30 Thread Jeff Schwartz
. Again, thank you for the information on RequestFactory. Jeff This is indeed great news. On Sat, Oct 30, 2010 at 5:13 PM, Thomas Broyer t.bro...@gmail.com wrote: On 30 oct, 16:44, Jeff Schwartz jefftschwa...@gmail.com wrote: I haven't read up in detail on the new RequestFactory implementation

GWT v2.1 MVP, STS/ROO, JDO, Objectify App Engine

2010-10-29 Thread Jeff Schwartz
Hi, First off, let me begin by saying how excited I am about the latest release of GWT, especially in regard to its new MVP frameworks. Congratulations, Google, and great job! I have an existing GWT/App Engine project which is based on the previous GWT release and which doesn't use any sort of

Re: GWT v2.1 MVP, STS/ROO, JDO, Objectify App Engine

2010-10-29 Thread Jeff Schwartz
that Roo uses a modular architecture and the Expenses sample app uses the Roo addon-gwt and addon-jpa modules, but for any more detail than that, you'll probably want to ping the Roo forum. HTH, /dmc On Fri, Oct 29, 2010 at 2:04 PM, Jeff Schwartz jefftschwa...@gmail.com wrote: Hi, First off

Re: What Major Companies Use GWT???

2010-10-28 Thread Jeff Schwartz
Corporate applications are some of the most demanding applications that one could develop so if companies are adopting GWT to develop them I think that speaks very highly of it. Jeff On Thu, Oct 28, 2010 at 1:11 PM, Harpal Grover harpal.gro...@gmail.comwrote: Ok so it seems like GWT has

Re: About widgets management

2010-10-27 Thread Jeff Schwartz
You can do it either way depending upon your requirements. If you want your widgets to maintain their state use singletons with a POJO getter factory method which is easy to implement. For example, let's say you have a composite widget YourWidgetClass. Just add the following code to it. private

Re: How to get list of objects from JSON ??

2010-10-26 Thread Jeff Schwartz
If the servlet is returning json then wouldn't just calling eval(jsonString) in your client create the javascript objects? On Tue, Oct 26, 2010 at 9:42 AM, Subhrajyoti Moitra subhrajyo...@gmail.comwrote: IMHO Overlay types are so much better than this round about solution. WHy cant your

<    1   2   3   >