Problem with GWT RPC and Enhanced classes that are not.

2016-10-28 Thread Will Phillips
ion feature which works throughout the GWT toolchain... Any help most gratefully received - Will -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to googl

Re: Printing

2014-01-22 Thread Will Davis
I am having a strange problem, I have figured out how to print my widget with the style. However, when I try to print a second widget, I get a blank page. I only have this problem in firefox, I havn't tested in IE, and chrome seems to work every time. Just to be clear I try to print a widget on

Passing multiple params to my Presenter

2012-03-14 Thread Will Tan
In my MainPagePresenter I have 2 fields that I would like to pass to my response presenter, however, I am not sure how to play with the ".with". Please help. placeManager.revealPlace(new PlaceRequest(NameTokens.response).with( ResponsePresenter.user

Beginner: Ext GWT - NoClassDefFoundError: com/google/gwt/core/ext/Generator

2011-05-01 Thread Will
Hi, I have set up the basic GWT HelloWorld equivalent and all works fine.. RPC call etc.. I have followed the most basic Ext GWT (Sencha) tutorial to convert this to ExtGWT project ref: http://www.sencha.com/learn/Ext_GWT_Getting_Started_Tutorials Its a really simple tutorial...copy in resources

Re: GWT MVP, getting Widgets??

2010-12-01 Thread Will
that all depends on what ListBox and DatePicker methods you expect to use in your Presenter. Personally, HasValue for DatePicker and possibly HasValueChangeHandler if I needed to execute code when the date changes. ListBox is a bit more tricky, The HasChangeHandlers interface will help you

Re: how to achieve pretty URLs in GWT 2.0 application

2010-12-01 Thread Will
If you only have 3 views then you can accomplish your view management using the a ValueChangeHandler on the History object in GWT. This will tell you whenever the hash string changes and you can check to see if it matches one of your 3 view states. There are more advanced methods to manage views

Re: CellList - Alignment

2010-10-22 Thread Will
Can anyone help me on this? I think its a general GWT question as opposed to one specific to CellList... When I was using a normal Tree i had the same alignment problems Thanks W On Oct 19, 9:05 pm, Will wrote: > Hi, > > I am having difficulty aligning my cell list correctly > &

CellList - Alignment

2010-10-19 Thread Will
Hi, I am having difficulty aligning my cell list correctly I have used the GWT show case and tutorials as base... I create my own cell classextends AbstractCell I am using DockLayout. WestPanel is plain ScrollPanel I create the CellList. I add this as a widget to the ScrollPanel. I then a

Re: Datastor issues - persistent POJOs

2010-10-09 Thread Will
!!!" + returnedEmployee.getEncodedKey()+","+returnedEmployee.getFirstName() +", "+returnedEmployee.getHireDate()+", "+returnedEmployee.getEncodedKey()); pm.close(); } } thanks again W On Oct 9, 4:57 am, Didier DURAND wrote: >

Re: Datastor issues - persistent POJOs

2010-10-08 Thread Will
f-g... > > > Also, Objectify-appengine provides emulation for Key and related > > classes so that POJOs can be used with GWT. > >http://code.google.com/p/objectify-appengine/ > > > HTH, > > -- > > David Chandler > > Developer Programs Engineer,

Datastor issues - persistent POJOs

2010-10-07 Thread Will
Hi, I'm constructing a POJO (Employee) on teh client side and trying to make persistent in teh datastore. So that both client and sever can see this class i place it in the / shared folder and annotate the object as suggested by tutorials for persistence... @PersistenceCapable public class Employ

Re: Client Server Communication - Best practice

2010-10-07 Thread Will
can have a Object A. > I use stripes for this feature. Look at the JavascriptResolution. > > Regards Jocke. > > 2010/10/7 Will > > > > > this thread is also helpful... > > >http://stackoverflow.com/questions/2955071/gwt-rpc-vs-http-call-which... > > >

Re: FormPanel Vs TextBoxBox.getText()

2010-10-07 Thread Will
thanks... On Oct 7, 2:07 pm, Thomas Broyer wrote: > On Oct 7, 10:25 am, Will wrote: > > > > > Hi, > > Beginners qn... > > > I was wondering what is the best policy when constructing a simple > > form in a GWT application. I have manually constructed it a

Re: Client Server Communication - Best practice

2010-10-07 Thread Will
this thread is also helpful... http://stackoverflow.com/questions/2955071/gwt-rpc-vs-http-call-which-is-better Thanks a lot for your replies... On Oct 7, 12:23 pm, Will wrote: > Hi Jocke, > > Thanks for the reply... > > Ok Jocke... thanks for your reply... > > I think you

Re: Client Server Communication - Best practice

2010-10-07 Thread Will
tputstream to the client :). gwt does not run > > in a jvm. > > > 2010/10/7 Will > > > Hi, > > >> I have a question about using serializable objects vs JSON. > > >> The tutorials demonstrate the use of JSON for client server > >> communicat

Client Server Communication - Best practice

2010-10-07 Thread Will
Hi, I have a question about using serializable objects vs JSON. The tutorials demonstrate the use of JSON for client server communication as well as serialized objects. My question concerns is there a best practice around using JSON vs serialized objects? When would one be better using JSON? My

FormPanel Vs TextBoxBox.getText()

2010-10-07 Thread Will
Hi, Beginners qn... I was wondering what is the best policy when constructing a simple form in a GWT application. I have manually constructed it and I am reading data from textboxes, buttons explicitly with getText() etc... What is the advantages / disadvantages of using FormPanel instead. When s

Re: Newbie qn: GWT.xml inherits vs Build path

2010-09-29 Thread Will
? Thanks, W On Sep 29, 8:07 am, Daniel Kurka wrote: > GWT Compiler does not use the whole java classpath for the sources that will > be translated to javascript. (There would be a lot of not translatable > classes). So by using the inherit tag you tell the compiler which classes > exa

Newbie qn: GWT.xml inherits vs Build path

2010-09-28 Thread Will
Hi, Beginner question: What is the difference between adding the GWT jar to my Eclipse build path and the functionality in the myapp.gwt.xml What does the achieve that I don't get with having the .jar on my build path.. Thanks, W -- You received this message because you are subscribed to t

Re: Creating custom 'elements' for UiBinder, like in DockLayoutPanel

2010-06-18 Thread Will
ustom element and have an onAttach( ) method that will throw an exception if the widget is placed outside of the correct context. I think that will behave similar to but I imagine GWT uses something more robust. On Apr 19, 1:58 pm, Graham J wrote: > DockLayoutPanel has the , , etc. which are

Re: UiBinder and Shared CssResource types

2010-03-19 Thread Will
... } and finally in WidgetX.ui.xml I hope this is not the "correct" way to use @Shared and that there is some way to use it with UiBinder tags On Mar 19, 2:14 pm, Will wrote: > My GWT 2.0.3 project uses UiBinder to create widgets and I wanted to > use a shared CssResource to make e

UiBinder and Shared CssResource types

2010-03-19 Thread Will
My GWT 2.0.3 project uses UiBinder to create widgets and I wanted to use a shared CssResource to make each widget have a common runtime CSS class. I created my SharedStyle as follows: @Shared interface SharedStyle extends CssResource{ public String test(); } Then each WidgetX uses the following t

Re: Import CSS to UiBinder style?

2010-03-19 Thread Will
changed at runtime but that will come later. For now, I hope anyone else trying to accomplish the first half if this find the forum post :) On Mar 19, 10:42 am, Will wrote: > My GWT project is to the point where I want to standardize the widget > colors by defining the colors in one pla

Import CSS to UiBinder style?

2010-03-19 Thread Will
My GWT project is to the point where I want to standardize the widget colors by defining the colors in one place and accessing the color definition within the section of each of my widgets. I am using GWT 2.0.3 and the latest Eclipse plugin (if those are relevant). Example: colors.css: @def TEXT

Has anyone integrated Google Website Optimizer into a GWT project

2010-03-11 Thread Will Bunker
Just tried my first experiment doing so and the website optimizer code replaced everything on the screen instead of the section of code it normally does using a regular web page. Couldn't find anyone who had posted about doing so, wondering if anyone has any experience using these tools together.

Re: docklayoutpanel in a dialogbox in ie8

2010-01-14 Thread will vuong
anyone? is this a bug that i should file an issue for? On Jan 12, 6:55 pm, will vuong wrote: > i did a little more poking around with ie.  apparently this works as > expected in ie8: > >                 DockLayoutPanel root = new DockLayoutPanel(Unit.EM); >                 ro

Re: docklayoutpanel in a dialogbox in ie8

2010-01-12 Thread will vuong
i did a little more poking around with ie. apparently this works as expected in ie8: DockLayoutPanel root = new DockLayoutPanel(Unit.EM); root.addNorth(new HTML("north"), 2); root.addSouth(new HTML("south"), 2); root.add(new HTML("ce

Re: Problem with IE.

2010-01-08 Thread will vuong
do you have the standards doctype set on your host html page? On Jan 7, 6:29 am, Jimmy Lee wrote: > I am playing with GWT 2.0 and it just works fine with Chrome and FF, > but not with IE. > I have tested it with IE 7 and 8. > > Strange thing is that both show no errors at all and say module is >

docklayoutpanel in a dialogbox in ie8

2010-01-08 Thread will vuong
maybe this is super trivial but i'm having trouble getting a docklayoutpanel in a dialogbox to render correctly in ie8 (the center region occupies the entire contents of the dialogbox). everything renders correctly in firefox 3.5 however. the north and south regions are being clipped in ie8. my

Re: DockLayoutPanel inside custom DecoratorPanel

2009-12-13 Thread Will
at 04:10, instagrammer wrote: > > I'm getting the same behavior.  North shows up, the others are > > somewhere in the dom, but not visible. > > > On Dec 5, 10:08 pm, Will wrote: > > > I am trying to create a custom DecoratorPanel that will work with > > > D

DockLayoutPanel inside custom DecoratorPanel

2009-12-05 Thread Will
I am trying to create a custom DecoratorPanel that will work with DockLayoutPanel as the child widget. I tried a normal DecoratorPanel and found that only Widgets in the North section of the DockLayoutPanel actually render. I used FireBug to determine that the rest of the widgets are added to

Re: OOPHM and Mac OSX

2009-10-15 Thread Will
electing properties)  Also, are you using > a Contributor SDK? > > > > On Wed, Oct 14, 2009 at 10:33 PM, Will wrote: > > > I updated my eclipse plugins and still see the spinning beach ball > > when I place the focus on the Swing UI. I am running on OSX 10.6 and > >

Re: OOPHM and Mac OSX

2009-10-14 Thread Will
/ what to try to hopefully resolve this issue? --Will On Oct 14, 11:03 am, Miguel Méndez wrote: > The plugin update was pushed out last night.  You plugin's notification > system should kickoff within the next 24hrs.  You can always manually > trigger a check for updates from eclipse. &

Re: Newbie question re returning persisted objects via RPC to client

2009-06-29 Thread Will
n Daniel wrote: > > > Let's say I want to persist Animal objects using JDO and also want to > > return these Animal objects via a GWT RPC service. From what I > > understand GWT will compile a version of Animal in javascript on the > > client. And I take it that any J

Re: Event handler for model ?

2009-06-11 Thread Will
That's what I use as well. I created an Abstract Class with Hashmap for removing a handler (because HandlerManager.removeHandler(..) is depricated) and use that for all my UI components that create custom events. I then create sub- Classes of EventHandler for each logical group of events but tha

{JOB} New York, NY GWT Developers

2009-03-05 Thread Will Mechem
For details please see: http://jobs.wjtglobal.com/a/jbb/job-details/65427 Will Mechem Managing Director Willard John Thomas Associates +1 646 784 0795 mec...@wjtglobal.com skype:will.mechem --~--~-~--~~~---~--~~ You received this message because you are subscribed

Need fix for GWT 1.6 Jars in Maven Repo

2009-02-26 Thread Will
Not sure who is reposponsible for the jars deployed to maven, but I am having issues with the versions deployed there. The 1.6.0 and 1.6.1 versions of gwt-dev and gwt-user jars contain the source code for the javax.servlet package. The problem is the source code has a newer timestamp than the cl

{JOB} Front End GWT developer - UI design specialist - NY,NY

2009-01-28 Thread Will Mechem
people) team of highly talented people who have fun and work hard. Their business is doing very well in this economy and that is reflected in the positive work environment. You will work directly with other developers, architects and business analysts as well as senior IT (CTO) and business