Re: Combo box in GWT2.4?

2012-05-18 Thread Isaac Truett
I played around with a ComboBox implementation long ago (circa GWT 1.6). It's actually built on top of a modified SuggestBox. I wouldn't bet on it working in 2.x as-is, but it's Apache licensed so do as you will with the source under those terms. http://code.google.com/p/simple-gwt/wiki/ComboBoxMo

Re: Required immediately: SAP CLM - Java Net weaver @ San Jose, CA

2011-12-19 Thread Isaac Truett
Job spam under this name has been showing up for a few days now. I've been reporting the posts as spam, but the poster is still at it. Who is currently moderating this forum whose attention I could bring this to directly? On Mon, Dec 19, 2011 at 1:02 PM, Mohammed Abdul wrote: > Hi Associates, >

Re: Simple GWT sample code from Eclipse does NOT run in Chrome!

2011-10-03 Thread Isaac Truett
GWT apps work fine in Chrome for me. You'll have elaborate on the problem you're seeing. Just saying it doesn't display properly doesn't help diagnose your problem. Does the JS console show anything? How about the Developer Tools' Network tab? Any resources failing to load? Or is this just an aesth

Re: Debugging in production mode

2011-09-22 Thread Isaac Truett
Laura, I would recommend gwt-log first and foremost for debugging production code. For setting -style in GPE, see the User's Guide . Also, check your browser's console. There may simply be a JavaScript error

Re: GWT with Oracle

2011-08-09 Thread Isaac Truett
What have you tried so far? On Tue, Aug 9, 2011 at 3:49 AM, Gema matesanz wrote: > > . > Hello, yes I've read the GAE Developer's Guide a few times and have not > found solution to my problem, say it's library but I make the > corresponding changes but still not working, you are kind enough to h

Re: GWT with Oracle

2011-08-08 Thread Isaac Truett
> java.lang.NoClassDefFoundError: oracle.jdbc.driver.OracleDriver is a restricted class. Please see the Google App Engine developer's guide for more details. This actually has nothing to do with GWT. You have Google App Engine enabled for your project. GAE restricts your access to certain Java cla

Re: Where to host GWT based web site

2011-08-04 Thread Isaac Truett
1. GWT applications don't require a Java back-end, so technically speaking any web host that lets you upload HTML and JS should be able to host a GWT application. 2. Google App Engine. On Thu, Aug 4, 2011 at 2:35 PM, Qiang Ma wrote: > Hi, > > I assume someone figured out... > If I develop a G

Re: Deploying to App engine

2011-08-03 Thread Isaac Truett
How often are you deploying that this is a big deal for you? You should be doing your debugging in development mode and only deploying to GAE when you have a polished release ready. On Wed, Aug 3, 201

Re: Using TextResources in UiBinder

2011-07-15 Thread Isaac Truett
it/doc/latest/DevGuideUiBinder.html> that I'm just not finding? I still can't find mention of ui:text outside of Group discussion which, unfortunately, I haven't been following as closely as I used to. It would be helpful to have a complete listing of supported elements. On Fri, Jul 15, 2011

Re: Using TextResources in UiBinder

2011-07-15 Thread Isaac Truett
Interesting. Thanks, Thomas. That does appear to work, although I need to find a way to keep it from escaping HTML. Is ui:text documented somewhere? On Fri, Jul 15, 2011 at 4:40 AM, Thomas Broyer wrote: > ? > > -- > You received this message because you are subscribed to the Google Groups > "

Using TextResources in UiBinder

2011-07-14 Thread Isaac Truett
I want to include a block of text from a ClientBundle's TextResource in a UiBinder template. Logically, I want this: http://dl.google.com/gwt/DTD/xhtml.ent";> {res.myTextResource.getText} But this just prints the literal "{res.myTextResource.getText}". And yet this: http://dl.google.com/gwt

Re: Where is downloadable GWT docs?

2011-06-30 Thread Isaac Truett
wget is a program typically found on Linux. There are Windows binaries available as well. I believe David was suggesting that you use Google Search to learn more about wget. On Thu, Jun 30, 2011 at 11:53 AM, Eric Atkinson < eric.atkin...@strategicinternationalsystems.com> wrote: > If you mean t

Re: Cannot read property 'com_google_gwt_i18n_client_DateTimeFormat_patternParts' of undefined

2011-05-19 Thread Isaac Truett
In case anyone's following along at home, I opened issue #6380 with my findings. http://code.google.com/p/google-web-toolkit/issues/detail?id=6380 On Wed, May 18, 2011 at 3:10 PM, Isaac Truett wrote: > Undo send! Undo! Sigh... > > It's GWT version 2.3.0. > > > On

Re: CellTable specify no records message

2011-05-19 Thread Isaac Truett
I use 2.3.0. I don't know if it's in 2.2.0. On Thu, May 19, 2011 at 2:14 PM, Patrick Tucker < patrick.tuc...@macefusion.com> wrote: > What version of GWT are you using? > > This method does not appear to be in the version that I am using, GWT > 2.2.0. > >

Re: GWT Incubator dropped?

2011-05-19 Thread Isaac Truett
Yes. Incubator is dead. On Thu, May 19, 2011 at 7:10 AM, chillyspoon wrote: > Hi all, > > Is it true that the GWT Incubator project is no longer going to be > maintained by the GWT team in sync. with GWT trunk? > > E.g. we're currently spiking moving our UI from GWT 2.0.4 to GWT 2.30 > before g

Re: Current state of crawlability in GWT

2011-05-18 Thread Isaac Truett
you're not using Gwt-Platform, you will still be able to use it, > but that will require a little bit more work. > We will continue to work on that feature and feedback is realy appreciated. > Cheers, > > On Mon, May 16, 2011 at 10:56 AM, Isaac Truett wrote: >> >>

Re: Cannot read property 'com_google_gwt_i18n_client_DateTimeFormat_patternParts' of undefined

2011-05-18 Thread Isaac Truett
Undo send! Undo! Sigh... It's GWT version 2.3.0. On Wed, May 18, 2011 at 3:08 PM, Isaac Truett wrote: > I'm at a lost to explain this JavaScriptException that occurs when trying > to parse a date. It works perfectly in DevMode, but once compiled I get this > error: > &g

Cannot read property 'com_google_gwt_i18n_client_DateTimeFormat_patternParts' of undefined

2011-05-18 Thread Isaac Truett
I'm at a lost to explain this JavaScriptException that occurs when trying to parse a date. It works perfectly in DevMode, but once compiled I get this error: (-:-) 2011-05-18 14:57:35,044 [FATAL] Uncaught Exception: com.google.gwt.core.client.JavaScriptException: (TypeError): Cannot read property

Re: CellTable specify no records message

2011-05-18 Thread Isaac Truett
I've been calling setEmptyTableWidget(new Label()) before requesting data to show a "loading..." message, in the callback's onFailure to show an error message, and in onSuccess to show the "no records found" message. On Wed, May 18, 2011 at 11:17 AM, Patrick Tucker < patrick.tuc...@macefusion.com

Current state of crawlability in GWT

2011-05-16 Thread Isaac Truett
What's the current state of crawlability in GWT? Is it all still done by hand? I recall there was some work on a CrawlableHyperlink that was abandoned, and I thought there was a Servlet written at some point that could automatically serve up HmlUnit snapshots, but I can't find that now. Are there p

Re: "combobox" - combination of list- and suggestion box

2011-04-28 Thread Isaac Truett
the little inverted triangle icon. If you want to change the icon, you can supply your own bundle. > On 19 Apr., 16:58, Isaac Truett wrote: >> I did use my own image for ComboBox. It can be overridden if you want >> to use your image instead. >> >> I think you're co

Re: "combobox" - combination of list- and suggestion box

2011-04-19 Thread Isaac Truett
Button > and how to get the button placed within the text box? or in general > how to get/use styles and images of existing gwt widgets? (i didn't > understand this part of your code. do you use your own image or do you > use the image and style of ListBox delivered with GWT?) > >

Re: "combobox" - combination of list- and suggestion box

2011-04-18 Thread Isaac Truett
I wrote a ComboBox based on the GWT 1.6 SuggestBox back in 2008. There have been a lot of changes since then, so I would be surprised if my implementation works with newer versions. The code is Apache 2.0 licensed. If you want to use any of that old code according to the terms of that license, here

Re: Can someone please unsubscribe joseph.fav...@olympus.com from this group?

2010-12-15 Thread Isaac Truett
I made a filter while back to mark those as spam. But, yeah, maybe moderation could be re-enabled on his membership? On Wed, Dec 15, 2010 at 1:37 PM, Jim Douglas wrote: > He posted a single message to this group almost three years ago. > Since that time, all of his postings have been out-of-offi

Re: New GWT 2.0 Book

2010-10-04 Thread Isaac Truett
I think if this makes your list of things to get really pissed off about, then life must be pretty good. Someone who works on GWT gets a writing credit on a book about GWT; that's not something to get upset over. On Fri, Oct 1, 2010 at 1:38 PM, Tommy Lui wrote: > Hi, > > Please help me unders

Re: Loading the old 'gwt.js' bootstrap script is no longer supported

2010-08-31 Thread Isaac Truett
It sounds to me like you're editing ClientCallDetails.html in the compiler output instead of the source directory. You probably want src/com/sample/project/public/ClientCallDetails.html. On Mon, Aug 30, 2010 at 12:17 PM, grasshopper wrote: > Hello all, > > I am trying to upgrade the GWT version

Re: GWT app looks ugly in IE6

2010-07-22 Thread Isaac Truett
GWT doesn't promise to make your application look the same on all browsers. It does try its very best to make sure that the JS it produces functions the same across browsers, and doesn't leave any nasty side effects, leak memory, or anything like that. There may be some cases where GWT will levera

Re: GWT Plugin for IE

2010-07-22 Thread Isaac Truett
Joyce, You only need the GWT developer plugin for development. Nothing in GWT requires an end-user to install a plugin. - Isaac On Thu, Jul 22, 2010 at 3:35 AM, Joyce wrote: > Hi, > > I am a software engineer and am currently new to GWT. > > I would like to ask if it is necessary to install Mi

Re: Difference between setWidget and setHTML?

2010-07-16 Thread Isaac Truett
extend the DialogBox, > right? (to have a titlebar with buttons with event handlers) > -akshay > > On 16 July 2010 22:13, Isaac Truett wrote: > >> Akshay, >> >> Yes, there are limitations. The HTML for a Button would not include >> registered event handler

Re: Difference between setWidget and setHTML?

2010-07-16 Thread Isaac Truett
Akshay, Yes, there are limitations. The HTML for a Button would not include registered event handlers, for example. You generally don't want to create widgets, reduce them to HTML, and then try to insert that HTML into another Widget. -- Isaac On Fri, Jul 16, 2010 at 12:28 PM, Akshay Kumar wrote

Re: NumberFormat on integer

2010-07-07 Thread Isaac Truett
I know that patches are always welcome . On Wed, Jul 7, 2010 at 1:36 PM, Patrick Tucker wrote: > Nobody knows?? > > On Jun 23, 10:28 am, Patrick Tucker wrote: > > Why does GWT not have a getIntegerInstance() in NumberFormat?? > > > > It s

Re: SuggestBox question - is it possible to react on sub sequences of the words?

2010-07-02 Thread Isaac Truett
Sure. Just write your own SuggestOracle implementation. On Fri, Jul 2, 2010 at 11:21 AM, crojay78 wrote: > Hi, > > I am using the suggest box in my app. Now I'm searching for the > possibility to change the filter. Is it possible to change the > behaviour so that not only words which start with

Re: make fileupload widget readonly

2010-07-02 Thread Isaac Truett
On Jul 2, 2010 12:15 PM, "Stefan Bachert" wrote: Hi, I would try fileupload.getElement().setPropertyString("readonly", "readonly"); fileupload.getElement().setPropertyString("disabled", "disabled"); Stefan Bachert http://gwtworld.de On Jul 1, 9:54 am, abhi wrote: > how to make fileupload t

Re: GWT.setUncaughtExceptionHandler not working

2010-06-29 Thread Isaac Truett
Moorsu, Sorry to leave you hanging on StackOverflow. I didn't see your code sample, as I've just explained over there . This behavior is described in issue #1617

Re: custom return objects from GWT servlets?

2010-05-26 Thread Isaac Truett
You mean declare your own serializable class and return it from a GWT RPC call? Yes, you can do that. What makes you think you can't? On Mon, May 24, 2010 at 5:01 PM, doles wrote: > Hello All, > > So is there no way to return a custom object from a GWT servlet other > than classes included in

Re: Roadmap?

2010-05-13 Thread Isaac Truett
All signs point to the GWT team being buried up to their eyeballs with preparations for Google I/O next week. I expect there will be at least one GWT announcement made at that conference, which might include some hints at upcoming features. Late May or early June might be a better time to ask quest

Re: org.apache.commons.lang.time

2010-05-10 Thread Isaac Truett
You don't need to deploy gwt-dev.jar, so there shouldn't be any conflict with your other library. On Mon, May 10, 2010 at 12:59 PM, Tobias Höfler < hoefler.tob...@googlemail.com> wrote: > Hi all, > > I wanna use the org.apache.commons.lang.time package at the server side > of my gwt application.

Re: GTW - getting started (Eclipse+widnows7)

2010-05-05 Thread Isaac Truett
I am sorry to hear that you're having trouble working with GWT. Have you followed the Getting Started with the GWT SDK section of the project's Google Code page? If you're still having problems, perhaps you could describe in more detail what i

Re: clean compile gives "the parameter is incorrect"

2010-04-06 Thread Isaac Truett
t.eclipse.sdkbundle. > > 2.0.3_2.0.3.v201002191036\gwt-2.0.3\gwt-dev.jar" > > com.google.gwt.dev.DevMode -remoteUI 1707:344705537223585 -startupUrl > > IDeBanet.html -logLevel INFO -port -war "C:\Documents and Settings > > \John\My Documents\_DeBa\ideba\iDeBane

Re: clean compile gives "the parameter is incorrect"

2010-04-06 Thread Isaac Truett
the classes that we pass to the enhancer. > > 2010/4/6 Isaac Truett > > @Kathrin - That is a really useful feature. But I don't think the Enhancer >> is going to show up in that list since it's run in the background by the >> plugin, rather than being lau

Re: clean compile gives "the parameter is incorrect"

2010-04-06 Thread Isaac Truett
ath that was actually run. > > I'm not sure this helps, but it's happened to me before that I changed > something that messed with the classpath in eclipse, and reverting that > change didn't actually revert the classpath... > > kathrin > > On Tue, Apr 6, 2

Re: clean compile gives "the parameter is incorrect"

2010-04-06 Thread Isaac Truett
not changed in months)) > > Java build path is set to idebanet/src Included (All) and Excluded > (none) Native library location (none) > > If you can point me anywhere else to look or test, Ill do anything to > sort this out > > On Apr 5, 5:42 pm, Isaac Truett wrote: > >

Re: clean compile gives "the parameter is incorrect"

2010-04-05 Thread Isaac Truett
John, This may be completely out of left field, but has your classpath grown recently? I've known java/javaw to fail due to excessively long classpaths. Even just moving files up a few directories can make the difference. - Isaac On Mon, Apr 5, 2010 at 12:18 PM, John V Denley wrote: > Im on the

Re: Reg:problem on reload

2010-03-06 Thread Isaac Truett
Raj, Because you're sending a new HTTP request for the current URL and re-parsing everything. What are you expecting to happen when you hit the refresh button? - Isaac On Fri, Mar 5, 2010 at 4:17 AM, raj wrote: > hi > > Whenever i refresh the GWT application either in hosted m

Code splitting report dependencies

2010-03-04 Thread Isaac Truett
I'm working on code splitting a GWT 2.0.0 app. Things are not splitting where I expect them to, so I'm looking to the compile report for help. According to the documentation I should be able to "click on the class" to "look at

Re: GWT team, please post latest to repo1.maven.org

2010-02-17 Thread Isaac Truett
This question comes up with every release, it seems. The GWT team doesn't maintain GWT versions in the maven repository. I don't know the name of the person who does, but you might be able to find it in a past discussion. On Wed, Feb 17, 2010 at 1:58 PM, Yaakov wrote: > Does anyone have any up

Re: How to get unpublished events from a SuggestBox?

2010-02-10 Thread Isaac Truett
There was a SuggestBox enhancement in trunk last month that abstracts out a SuggestionDisplay. You should be able to implement a SuggestionDisplay that gives you the access you need. On Wed, Feb 10, 2010 at 1:21 PM, phb wrote: > Okay, as I think about it, this approach won't work anyway, because

Re: Since OOPHM recompile after RPC/DTO change mandatory,why?

2010-01-29 Thread Isaac Truett
It seems to me that this might be related to the problem discussed in the thread below. You could at least try workaround and see if that helps. http://groups.google.com/group/google-web-toolkit/browse_thread/thread/a27e48251e3bb722/685796009a4b403d On Thu, Jan 28, 2010 at 6:00 AM, grandfatha w

Re: SuggestBox drop down button

2010-01-25 Thread Isaac Truett
I played around with this idea a while back. The result is available on Google Code (link below). It's Apache 2 license, like GWT, so you can use it on those terms. It was written in the GWT 1.6 era and I'm not actively developing the project at this time, but please do leave any feedback you may h

Re: Eclipse Plugin Wizard for Events

2010-01-21 Thread Isaac Truett
Eric, You might like to star issue #3914. http://code.google.com/p/google-web-toolkit/issues/detail?id=3914 - Isaac On Thu, Jan 21, 2010 at 7:13 AM, Eric wrote: > I was trying to create an application-level logical event class, and I > realized that the plugin could provide a wizard to create

Re: Multiple RPC requests, onSuccess() order/concurrency

2010-01-12 Thread Isaac Truett
Hi Mike, Are you sure the responses are being handled concurrently? JS is indeed single threaded, so you should be seeing those responses handled sequentially, although the order in which the requests will return is not guaranteed. Based on your description, I would suggest disabling the button a

Re: SuggestBox hides RootLayoutPanel and all its contents

2010-01-12 Thread Isaac Truett
Jorge, Can you use a DOM inspector to examine that white overlay? I would guess that you have an opaque "glass panel" and you just need to set some CSS to make it transparent. Knowing what that white thing really is would help. - Isaac On Mon, Jan 11, 2010 at 10:38 PM, Jorge wrote: > It's been

Re: Can java client use GWT RPC?

2009-12-23 Thread Isaac Truett
> This is what I'm going to do. But I see one problem here. I'd like to > use Google's authentication. > As far as I understand it is HTTP based. I don't see any way how to > use it outside browser. > Any ideas? > > Thank you, >  Andrey > > On Dec 15, 1

Re: Question on Code Generation inconjunction with JS-Libraries to optimize size

2009-12-22 Thread Isaac Truett
Tom, > I thought about using the GWT Code Generation to get informed whenever > wrapper classes are used but as far as I understood this code > generation only jumps in when I use GWT.create() but this means my > Library users need to use GWT.create(AWrapper.class) instead of "new > AWrapper()" wh

Re: UnsatisfiedLinkError on Production Machine

2009-12-22 Thread Isaac Truett
You're trying to call a JSNI method on the server. That won't work. You get an UnsatisfiedLinkError because JSNI uses Java's native method syntax. On the server there is no native implementation of that method. You'll need to use a different MD5 implementation on the server. On Tue, Dec 22, 2009 a

Re: import wildcards

2009-12-21 Thread Isaac Truett
No, it doesn't change the compiler output. Wildcard imports are considered to be a poor coding practice by many Java developers. On Mon, Dec 21, 2009 at 10:39 AM, S Frazier wrote: > The StockWatcher tutorial has me adding imports for each and every > class that it needs to use without explaining

Re: Hosted mode won't work since 2.0 upgrade

2009-12-15 Thread Isaac Truett
Have you done a clean build and deploy since downgrading? It sounds to me like you're still using the 2.0 version of hosted.html. On Tue, Dec 15, 2009 at 5:51 PM, Adam S wrote: > Same outcome here. I tried to swtich to GWT2.0, but my app using > smarGwt > compononets didn't exacly looked as i i

Re: Can java client use GWT RPC?

2009-12-15 Thread Isaac Truett
Hello Andrey, No, there isn't a simple way to use GWT RPC outside of the browser. Your best option is to write your server logic independent of any particular protocol. Then you can write multiple protocol implementations such as GWT RPC, JSON, plain HTTP, or even direct sockets, that all share t

Re: How to detect mouse down in an AbsolutePanel?

2009-12-14 Thread Isaac Truett
Amir, It looks like you've created a class that is both an AbsolutePanel and a MouseDownHandler, but do you ever call addMouseDownHandler() to make the class handle its own events? On a design note, you will probably want to avoid implementations such as this and use anonymous or inner classes as

Re: Compiler Performance

2009-12-14 Thread Isaac Truett
Hello Artyom, GWT 2.0 (and every other major release since I've been following the project) includes new compile-time optimizations. These optimization take time to run. That could account for some of the increased compile time you're seeing. Another thing to look at is the number of permutations

Re: Modules Architecture Newbie Doubt

2009-12-14 Thread Isaac Truett
Hi Ricardo, I would suggest looking at navigation more like a Swing or other desktop app rather than a page-centric traditional webapp. In a typical Swing app you would probably write a "launcher" class that has a main() method which constructs your application's window and populates it with a men

Re: Controlling desktop windows size and position.

2009-12-03 Thread Isaac Truett
igh-level aspects around how > I would communicate and pass parameters to a server side application > written in Java. > > For example, if I wrote an server side application that listens to a > port can I feed information to it through GWT or would I need to go > about it in a different w

Re: Controlling desktop windows size and position.

2009-12-02 Thread Isaac Truett
Patrick, GWT can do anything that HTML, JavaScript, and CSS together can do in a browser. The server in your setup is the entity that will be interacting with the OS to manipulate other processes. Once you get to the server, you're really outside the realm of GWT and you're free to do whatever you

Re: Socket permission on Hosted Mode

2009-11-04 Thread Isaac Truett
Hosted (now "Dev") mode does allow sockets from server classes. App Engine does not allow sockets. You need to uncheck App Engine in your project properties in Eclipse. On Wed, Nov 4, 2009 at 2:11 PM, Tarlis Portela wrote: > Hi all, > My GWT application use Db4o (some object oriented database),

Re: remote login in windows

2009-11-02 Thread Isaac Truett
Perhaps you should try a general purpose Java or Windows forum. This forum is for GWT. On Sun, Nov 1, 2009 at 9:29 PM, sathya wrote: > > I do not need any Active Directory authentication. I need to directly > login into remote windows system and execute commands using windows > power shell. > I

Re: gwt suggestbox.

2009-10-29 Thread Isaac Truett
As Thomas said, you'll need to write a SuggestOracle that returns an empty list of suggestions for queries shorter than x characters. And I wanted to add: if you want to keep the functionality of the MultiWordSuggestOracle then you can have your oracle delegate to a MuliWordSuggestOracle instance

Re: Date Picker not found in GWT 1.7.1

2009-10-26 Thread Isaac Truett
On 22 out, 16:59, Rafael Daniel Laurindo wrote: >> >> >> >> > I asked a friend to test on another pc and not work. someone can test for >> > me? >> >> > 2009/10/22 Isaac Truett >> >> > > Works fine for me in Chrome. >>

Re: Session-Confusion

2009-10-26 Thread Isaac Truett
Philipp, Use your own ID instead of or in addition to the session cookie. Send that ID with each RPC request so that the server knows which instance of your app it is talking to. - Isaac On Mon, Oct 26, 2009 at 9:06 AM, philipp.bouil...@gmail.com wrote: > > Hmm... Ok, I see. I will try googli

Re: package organisation

2009-10-23 Thread Isaac Truett
You can use separate packages as long as you add them to your source path. http://code.google.com/webtoolkit/doc/1.6/DevGuideOrganizingProjects.html#DevGuideModules On Fri, Oct 23, 2009 at 11:38 AM, g1 wrote: > > To add to this: > > it appears that if I move AccessInterface and AccessInterfac

Re: Date Picker not found in GWT 1.7.1

2009-10-22 Thread Isaac Truett
Works fine for me in Chrome. On Thu, Oct 22, 2009 at 11:58 AM, Rafael DL wrote: > > Hi, > > I'm trying to use the datebox after GWT upgraded to version 1.7.1, and > noticed that the screens that have this component does not work. > > I have tried chrome, firefox and ie8, match any of them worke

Re: Welcome Chris Ramsdale to the GWT community!

2009-10-06 Thread Isaac Truett
Welcome, Chris. It's always good to have new faces (... well, email addresses) around. Couldn't have picked a more exciting time, what with the much anticipated 2.0 right around the corner! - Isaac On Tue, Oct 6, 2009 at 9:16 AM, Sumit Chandel wrote: > > Hello everyone, > > Chris has recently j

Re: List Serialization Error

2009-10-02 Thread Isaac Truett
(personDriver); > listPerson.add(personPassenger); > car.setPersonList(listPerson); > > Null? Where? Its instantiate and populated with Person! > > > On 1 out, 13:38, Isaac Truett wrote: >> Because a pointer referenced on line 19 was null. >> >> http://publici

Re: List Serialization Error

2009-10-01 Thread Isaac Truett
Because a pointer referenced on line 19 was null. http://publicint.blogspot.com/2009/04/nullpointerexception.html On Thu, Oct 1, 2009 at 11:56 AM, The Coder wrote: > > I have two Entities. Car and Person. Car have a List of Person. Its > just for example the problem. Well, we have it: > > -- >

Re: If anyone has a google wave invite - cough - please?

2009-09-30 Thread Isaac Truett
This really isn't the proper forum for this. On Wed, Sep 30, 2009 at 10:31 AM, psandyw wrote: > > Hi, > >  I have heard that the people that have a Google Wave account can > nominate up to 8 persons for an account. > > if you have some left over pls nominate me > > thx > > Andy > > On Sep 30, 3

Re: dialog box background - BUG?

2009-09-29 Thread Isaac Truett
;sendButtonContainer").add(TestButton); > > Then add the following in the CSS file: > > .TEST_DIALOG { >  background: red; > } > > > Then you will see this bug when you run the project and click on the > "TEST" button > > > On Sep 17, 3:47 pm,

Re: Link static html elements with GWT

2009-09-24 Thread Isaac Truett
I think you might have better luck with the Anchor.wrap() method. After wrapping the elements in an Anchor Widgets you can add ClickHandlers. On Thu, Sep 24, 2009 at 7:32 AM, newUser wrote: > > I modified the code as: > > HTML code to : > > CONTROL ROOM > > GWT code to : > >        public stat

Re: Greetings Eclipse Gwt Project - jdbc connection problems java.lang.ExceptionInInitializerError

2009-09-24 Thread Isaac Truett
Stefan, Are you aware that you have your project configured to use Google App Engine? App Engine will not let you open a socket to a database. http://code.google.com/appengine/docs/java/runtime.html#The_Sandbox - Isaac On Thu, Sep 24, 2009 at 7:16 AM, biggi wrote: > > Hello everybody, > > Lon

Re: html onclickhandler with multiple hyperlink

2009-09-20 Thread Isaac Truett
Hi Maks, I think you would be better served by using a FlowPanel and adding multiple Hyperlinks or Anchors to it. The example you've provided doesn't allow for separate ClickHandlers on the two elements. - Isaac On Thu, Sep 17, 2009 at 4:48 AM, maks wrote: > > hi guys, > > I was wondering ho

Re: IncompatibleClassChangeError

2009-09-20 Thread Isaac Truett
Hi Jan, I'm not a maven user. You might have better luck on a maven forum. But the stacktrace you provided suggests to me that you have two different versions of GWT on your classpath. Hope that helps. - Isaac On Thu, Sep 17, 2009 at 5:08 AM, Jan Schultze wrote: > > Hi folks, > > using GWT 1

Re: Error Message

2009-09-18 Thread Isaac Truett
Stephan, You, my dear fellow, have a NullPointerException. http://publicint.blogspot.com/2009/04/nullpointerexception.html - Isaac On Fri, Sep 18, 2009 at 9:05 PM, GumbyGWTBeginner wrote: > > I was wondering if anyone could shed some light on this error message. > > The only thing I have cha

Re: GWT RPC - how to call an existing GWT Rpc Servlet from a simple class (not client code)

2009-09-18 Thread Isaac Truett
Take all of the logic out of your RPC servlet and put it in another class. Call that class' methods from your RPC servlet's service method implementations. Write another interface, such as a plain servlet, and have it call the logic class methods, too. In the Java desktop, call the non-RPC interfa

Re: dialog box background - BUG?

2009-09-17 Thread Isaac Truett
John, The first step in reporting a bug is to create the smallest possible piece of code that reproduces the problem. You can post that code here and the group can help you determine if you have a legitimate bug. - Isaac On Thu, Sep 17, 2009 at 5:36 AM, John V Denley wrote: > > ive just tried

Re: Creating a wizard - Series of steps with GWT

2009-09-15 Thread Isaac Truett
Yes. On Tue, Sep 15, 2009 at 10:31 PM, Karan Sardana wrote: > > Scenario is -  The user needs to enter and submit a lot of > information, & the mechanism to collect such information is often > organized into many screens with next/previous/finish buttons. > > Is there any way in which I can cre

Re: Problem connecting to a Postgresql Database under Google GWT when APP Engine enabled

2009-09-15 Thread Isaac Truett
Basically, no. You can't do what you want to do. You can't connect to your database from App Engine. That has nothing to do with GWT. On Thu, Sep 10, 2009 at 3:21 AM, Romeo Sanchez wrote: > My problem is exactly the same as the one described at: > http://groups.google.com/group/Google-Web-Tool

Re: picklist avaliabe in GWT?

2009-09-15 Thread Isaac Truett
Parag, PagingScrollTable in the GWT incubator project should get you started: http://code.google.com/p/google-web-toolkit-incubator/ - Isaac On Thu, Sep 3, 2009 at 10:34 PM, Parag wrote: > > Hi All, > > I need ability to pick from a list ( paging list), does anyone know if > GWT or some of it

Re: Deployment with Tomcat without nasty "404 Not Found" error?

2009-09-15 Thread Isaac Truett
If you want to avoid downtime then I agree with Andrew; you basically have to have a backup server. On the other hand, if all you want to do is present something more user-friendly than a 404 page, you could run Apache or some other web server in front of Tomcat and have Apache serve up an "out to

Re: Chrome like tab behaviour possible using GWT?

2009-09-14 Thread Isaac Truett
st or last, but otherwise it should be doable with CSS. On Sun, Sep 13, 2009 at 6:46 PM, myapplicationquestions wrote: > > I am trying to get the cascading tabs with the overlay you can see... > > On Sep 9, 12:52 am, Isaac Truett wrote: >> Perhaps you could describe what features of

Re: Seriously getting beyond my capabilities with GWT....

2009-09-11 Thread Isaac Truett
John, I think you'll get the best results and fastest replies if you post more details. Specifically: 1. The exact text of the error message you received, including any Java stacktrace. 2. The portion of your code referenced in the stacktrace. Start with the class closest to the top of the trace

Re: GWT in a "cross site scripting mandatory" environnement

2009-09-09 Thread Isaac Truett
Hello, I believe the XS linker is what you need. See link below. http://code.google.com/webtoolkit/doc/1.6/DevGuideOrganizingProjects.html - Isaac On Wed, Sep 9, 2009 at 5:36 AM, PFP77 wrote: > >       Hi, > > I am developing applications in a corporate environnement where all > web applicati

Re: Chrome like tab behaviour possible using GWT?

2009-09-08 Thread Isaac Truett
Perhaps you could describe what features of the tabs in Chrome you wish to reproduce. On Tue, Sep 8, 2009 at 3:19 PM, myapplicationquestions wrote: > > yes. but i could not get the chrome like tabs using tab or decorated > tab panels.. > > On Sep 8, 11:54 am, Isaac Truett wr

Re: RPC and MYSql interacting / complied code not working

2009-09-08 Thread Isaac Truett
Stephan, > Now to get this working I had to disable the "Google App Engine" (as > mentioned on this site forum), still not sure why but I can live with > this. You have to disable the App Engine portion of the Eclipse plugin because you aren't using App Engine. You *can* run GWT applications on

Re: Chrome like tab behaviour possible using GWT?

2009-09-08 Thread Isaac Truett
Are you aware of the TabPanel class? http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/user/client/ui/TabPanel.html On Tue, Sep 8, 2009 at 11:39 AM, myapplicationquestions wrote: > > Chrome like tab behaviour possible using GWT? I like chrome browser > tabs and want tp have

Re: GWT plugin: Problem when project name is changed

2009-09-05 Thread Isaac Truett
configuration > is referring is no long exist? > :-) > > > On Sat, Sep 5, 2009 at 9:53 AM, Isaac Truett wrote: >> >> I would tend to say no, although I reserve the right to be persuaded >> otherwise by a compelling argument. I can't think of any precedent for

Re: Your GWT based open source project(s)

2009-09-04 Thread Isaac Truett
Yes, I suppose I was. On Thu, Sep 3, 2009 at 7:40 PM, Fred Sauer wrote: > From time to time I hear from people who have created GWT related open > source projects. > If that includes you, here's my 1 question, 10 second survey: >      Q. Were you encouraged to open source your project because of

Re: was not serializable and has no ...

2009-09-04 Thread Isaac Truett
Since ListStore is from a third-party library and not a core class, you might have better luck asking on that library's forum. Off the cuff, I'd guess that ListStore is not serializable. But, again, you should find people with more specific knowledge of your situation on the appropriate forum.

Re: GWT plugin: Problem when project name is changed

2009-09-04 Thread Isaac Truett
t about if we rename the hosted page? > Should the plugin update the reference in the launch configuration too? > > On Mon, Aug 31, 2009 at 10:20 PM, Isaac Truett wrote: >> >> > I'm not sure that it should change the name of the launch >> > configuration and host

Re: Is Google Web Toolkit for me?

2009-09-04 Thread Isaac Truett
> There is no doubt that choosing GWT means ur web app has to be purely > Java-based. > As rightly pointed out in above post, u would require GWT (client- > side) and Spring/Hibernate or other similar technologies (server-side) > to create a maintainable, efficient Java web app. Thus u would be >

Re: MySQL Connection

2009-09-02 Thread Isaac Truett
ystem. i.e. MySQL on a website and the GWT app interacting with this. > > Any help would greatly appricated. > > Thanks for the help thus far. > > Stephan > > > On Sep 3, 9:44 am, Isaac Truett wrote: >> Hi, >> >> The problem is that you're trying t

Re: MySQL Connection

2009-09-02 Thread Isaac Truett
Hi, The problem is that you're trying to mix GWT and java.sql. That's not going to work. JS in the browser can't connect to your database. The cause of your specific error is that Class.forName() is not a part of the JRE that GWT emulates. See also: http://code.google.com/webtoolkit/doc/1.6/RefJ

Re: blank page and other weirdness after upgrade, 1.5 to 1.7

2009-08-31 Thread Isaac Truett
2:03 PM, Dave wrote: > > Yeah, it's good to be reminded never to make assumptions - thanks, > Isaac. > > > Dave > > On Aug 31, 10:40 am, Isaac Truett wrote: >> Dave, >> >> I can't speak for Rajeev, but your reply to him never reached my >>

  1   2   3   4   5   >