Re: GWT app doesn't work behind reverse proxy

2015-07-09 Thread David Hoffer
Jens, Thanks for the reply and information, it sounds like there is a workaround then for the GWT part but we still have the same/similar issue with Tomcat's authentication. We need to solve that too else its only a partial solution. Btw, regarding the GWT serialization issue...I read online

Re: GWT throws random IllegalArgumentException in DevMode

2014-11-10 Thread David Hoffer
I did try to upgrade to 2.7-rc1 but got some compiler errors, I also upgraded the gwt maven plugin to 2.7-rc1. Then I read that SDM was the default so I added the flag so that DM would be used...but still got the compiler errors. Could be that I have some 3rd party GWT code that isn't compatible

Re: GWT throws random IllegalArgumentException in DevMode

2014-11-09 Thread David Hoffer
I'm using Firefox ESR 24.2.0. On Sun, Nov 9, 2014 at 4:39 PM, Thomas Broyer t.bro...@gmail.com wrote: I'd bet you're using Chrome. Search the issue tracker, it's a known bug with Chrome and the Dev plugin. -- You received this message because you are subscribed to a topic in the Google

Re: Development Mode will not be supported in Firefox 27+

2014-11-07 Thread David Hoffer
That is really good news. I haven't tried this yet (need to upgrade IDEA to 14) but it sounds like one gets most/all the benefits of DevMode development/debugging yet it's really using SDM. Very impressive. -Dave On Thu, Nov 6, 2014 at 6:55 AM, Jens jens.nehlme...@gmail.com wrote: I'm using

Re: Development Mode will not be supported in Firefox 27+

2014-11-03 Thread David Hoffer
IMO, the loss of DevMode is a huge problem for GWT, I understand SuperDevMode is its replacement but unfortunately that is no where near a true replacement at least not yet. It's a bit hard to explain unless you have used both approaches on a large project but the best way I can think of to

Re: Development Mode will not be supported in Firefox 27+

2014-11-03 Thread David Hoffer
-enter a specific point. I have very mixed perceptions on this multi-entry point development. Tim From: David Hoffer dhoff...@gmail.com Reply-To: google-web-toolkit@googlegroups.com Date: Monday, November 3, 2014 at 9:45 AM To: Google Web Toolkit google-web-toolkit@googlegroups.com Subject: Re

Re: Development Mode will not be supported in Firefox 27+

2014-11-03 Thread David Hoffer
I like where you might be going with your last paragraph (the IntelliJ part )...Other than that there is the experimental Eclipse plugin named SDBG so you can use your IDE for debugging (but you are still debugging JS!). IntelliJ can do the same out of the box. Are you saying that IntelliJ can

Re: Development Mode will not be supported in Firefox 27+

2014-11-03 Thread David Hoffer
points in the browser. Paul On 3 Nov 2014 17:49, David Hoffer dhoff...@gmail.com wrote: I like where you might be going with your last paragraph (the IntelliJ part)...Other than that there is the experimental Eclipse plugin named SDBG so you can use your IDE for debugging (but you are still

Re: GWT using SDM throws error at app startup

2014-08-31 Thread David Hoffer
My bad. Somehow I almost convinced myself that GWT was wrapping my 'view' variable with a getter called getView that I didn't see what the stack trace was really telling me. (If I would have called my variable x this would have been obvious.) Yes you are right there was a case where a widget

Re: GWT using SDM throws error at app startup

2014-08-30 Thread David Hoffer
Hum...I'm not entirely clear how that maps to the java code. As I follow that stack trace I think this comes down to this code: public class LoadAdsPrepareGridPresenter { private final ILoadAdsPrepareGridModel model; private final ILoadAdsPrepareGridView view; public

Re: GWT SDM throws error inspecting results in Chrome debugger

2014-08-22 Thread David Hoffer
To be more clear...this happens just stepping into the code. -Dave On Fri, Aug 22, 2014 at 8:17 PM, dhoffer dhoff...@gmail.com wrote: I finally got SuperDevMode to work and am trying to debug using Chrome but when I step through the code when I get to the lower level it always throws and

Re: Need to add HTML5 desktop to browser DnD support in GWT application

2014-03-11 Thread David Hoffer
Nicolas, Thanks much for the link to this component. I had found a couple similar ones but found this one to be the best, it really works great. Thanks again for the link. -Dave P.S. I would think that GWT ought to have this as a core feature. On Mon, Feb 24, 2014 at 12:24 PM, Nicolas

Re: GWTBridgeImpl throws com.google.gwt.core.ext.UnableToCompleteException exception

2014-01-13 Thread David Hoffer
Thanks for the suggestions. Yes I too find that I have to delete gwtUnitCache on occasion so yes I had tried (several times) that thinking it would help but it didn't in this case. However I'm not sure about symbolMaps where are those located? Regarding the script vs. IDE build issue...I only

Re: GWT/JavaScript code generation tool

2013-12-11 Thread David Hoffer
Right, seems it would have a wide range of uses and could jump-start the usage of GWT. I wonder if the SWIG folks have looked at this, it seems perfect and an easy use case for them...except that the source is JS instead of C/C++. -Dave On Wed, Dec 11, 2013 at 11:20 AM, Juan Pablo Gardella

Re: GWT/JavaScript code generation tool

2013-12-11 Thread David Hoffer
Alain, Your in the process of writing a wrapper so you might know if there are technical hurdles that would prevent this...but I think it would be possible. The folks at SWIG manage to auto generate wrapper code starting with incredibly complex C++ code and manage to generate perfectly fine Java

Re: GWT/JavaScript code generation tool

2013-12-11 Thread David Hoffer
Alain, This is off topic...but you said your writing a GWT wrapper for Ext JS? Why not just use GXT (Sencha's pure GWT library)? -Dave On Wed, Dec 11, 2013 at 11:42 AM, David Hoffer dhoff...@gmail.com wrote: Alain, Your in the process of writing a wrapper so you might know

Re: GWT/JavaScript code generation tool

2013-12-11 Thread David Hoffer
? String ? Commenting the code could be a solution (Like Closure does). But not all JS libraries have descent comment informations. That s why I m saying I m not sure how such a tool would work for every given JS library. But I might be wrong though. 2013/12/11 David Hoffer dhoff

Re: GWT/JavaScript code generation tool

2013-12-11 Thread David Hoffer
How do you handle that same case when writing the wrapper manually? Do you manually inspect the method to see what are allowed types and then define the java wrapper appropriately? Or do you just go with Object and let the user of the wrapper code figure out what is allowed? Again, this might

Re: GWT and Web Security

2013-07-26 Thread David Hoffer
That's good information. I had no idea Guice supported AOP, I've been using Guice for IoC and Spring Security for security functionality. (I too have an aversion to Spring for IoC but I don't have a preference yet for security). However I'd have to see an example to really understand the

Re: gwt-maven-plugin JVM failures

2013-03-14 Thread David Hoffer
Found the bug. The plugin requires that tag to be all on one line in the XML file...reading like a text file instead of XML. Our IDE formatted the XML so it looks good and that caused the problem with the plugin. -Dave On Thu, Mar 14, 2013 at 10:34 AM, dhoffer dhoff...@gmail.com wrote: And

Re: GWT 2.5 compiler is running out of memory

2013-02-01 Thread David Hoffer
The last error was this: [INFO] # [INFO] # There is insufficient memory for the Java Runtime Environment to continue. [INFO] # Native memory allocation (malloc) failed to allocate 32744 bytes for ChunkPool::allocate [INFO] # [INFO] # There is

Re: GWT 2.5 compiler is running out of memory

2013-02-01 Thread David Hoffer
they are if that's the case. Instead it fails to compile, not sure what to do to resolve this. Note that if I didn't kill the build at this point...it would continue on with the next permutation...and not report this error at the end. -Dave On Fri, Feb 1, 2013 at 6:17 AM, David Hoffer dhoff

Re: GWT 2.5 compiler is running out of memory

2013-02-01 Thread David Hoffer
didn't kill the build at this point...it would continue on with the next permutation...and not report this error at the end. -Dave On Fri, Feb 1, 2013 at 6:17 AM, David Hoffer dhof...@gmail.com wrote: The last error was this: [INFO] # [INFO] # There is insufficient

Re: Errors passing javascript variables to GWT

2012-12-15 Thread David Hoffer
Yup your right, I had made what seemed like minor changes to the JS literal code that was causing this problem. Odd as the errors didn't seem to indicate a JS source error but my bad...it's working now. Thanks. -Dave On Sat, Dec 15, 2012 at 2:54 AM, Thomas Broyer t.bro...@gmail.com wrote: Have

Re: GWT Google OpenID login

2012-12-11 Thread David Hoffer
What technology do you use to implement that OpenId 'login page'? Is it possible/practical to use GWT for this? As I understand it this OpenId login sort of bootstraps your app, i.e. they don't get to your GWT app until they have successfully completed this login. And then how do you block

Re: GWT Google OpenID login

2012-12-10 Thread David Hoffer
That sounds about perfect. Any chance you have some sample code you could forward? Especially how you implement the openid4java front end? Thanks, -Dave On Mon, Dec 10, 2012 at 9:05 AM, Pedro Lamarão pedro.lama...@gmail.com wrote: Em segunda-feira, 10 de dezembro de 2012 01h36min28s UTC-2,

Re: GWT Plugin for Firefox 13

2012-12-06 Thread David Hoffer
Yes that works well, thanks! -Dave On Wed, Dec 5, 2012 at 7:02 PM, Thomas Broyer t.bro...@gmail.com wrote: The XPI from the SVN works (should work) for all versions of Firefox back to 3.0, as we're adding new DLLs/SOs/DYLIBs for each new Firefox version:

Re: How to define AutoBeanFactory?

2012-10-20 Thread David Hoffer
Yeah that helps a ton. That's by far the best explanation of how to use AutoBeans that I have seen, I recommend that this get added to the current docs on the web. That being said I'm still getting an error in one place. In this call in my code AutoBeanCodex.encode(payloadAutoBean)...several

Re: How to define AutoBeanFactory?

2012-10-19 Thread David Hoffer
I did find that but it doesn't explain much at all. Regarding the AutoBeanFactory it just says: interface MyFactory extends AutoBeanFactory { // Factory method for a simple AutoBean AutoBeanPerson person(); // Factory method for a non-simple type or to wrap an existing instance

Re: GWT Maven build best practices

2012-07-17 Thread David Hoffer
Thanks, I thought I would look at the module structure you use in your gwt-maven-archetypes https://github.com/tbroyer/gwt-maven-archetypes. I downloaded the zip but when I try to run clean install I get this error: [ERROR] Failed to execute goal org.apache.maven.plugins:maven-archetype-plugin:2

Re: GWT Maven build best practices

2012-07-17 Thread David Hoffer
Yes of course:) It's our corporate standard. Deleting the tests solved the problem. Thanks, -Dave On Tue, Jul 17, 2012 at 10:09 AM, Thomas Broyer t.bro...@gmail.com wrote: On Tuesday, July 17, 2012 5:37:21 PM UTC+2, dhoffer wrote: Thanks, I thought I would look at the module structure

HTML-safety best practices

2012-03-20 Thread David Hoffer
I get the following error: [INFO] Generating method body for img() [INFO] [WARN] Template with variable in URL attribute context: The template code generator cannot guarantee HTML-safety of the template -- please inspect manually or use SafeUri to specify arguments in a URL attribute context

Re: How to host GWT app on remote server

2012-03-03 Thread David Hoffer
I read at http://code.google.com/webtoolkit/doc/latest/tutorial/Xsite.html a discussion about this. I like the second option of dynamically loading javascript in a script tag. However its not clear to me if I can do what I want. That discussion is for the stock watcher application which I don't

Re: problem of Image class of the gwt

2009-01-19 Thread David Hoffer
The Image class expects the image to be specified in terms of a server (http) URL, same as the setURL() method. Typically this is either a static image in your GWT public folder or a dynamic image via a servlet. -Dave On Mon, Jan 19, 2009 at 2:52 AM, ship shilpi10ve...@gmail.com wrote: hi to

Re: Regarding GWT and comet

2009-01-19 Thread David Hoffer
we use rocket-gwt you might want to check it out. Dave Hoffer - sent via G1 On Jan 19, 2009 4:17 PM, neversaydie moge...@gmail.com wrote: Hello, We are planning to user comet in our yet to be started application. Just wanted to know if any problems in using comet or there is anything

Re: How does gwt1.5 support jdk1.5

2009-01-12 Thread David Hoffer
No, I wouldn't think GWT would support java.io. GWT can only support what JS can support. Google for GWT emulation library I think you will find there what classes/packages are supported. Basically the big feature added in 1.5 release was generics. -Dave On Mon, Jan 12, 2009 at 8:06 AM, Mark

Re: Recommended GWT Maven plugin

2009-01-12 Thread David Hoffer
I have used the first one ( http://gwt-maven.googlecode.com/svn/docs/maven-googlewebtoolkit2-plugin/index.html) with good results, I can't speak for the other one. -Dave On Mon, Jan 12, 2009 at 7:11 PM, Joshua Partogi joshua.j...@gmail.comwrote: Hi all, What is the recommended GWT plugin

Re: server push

2009-01-06 Thread David Hoffer
You might google for Rocket-gwt it has a comet implementation. -Dave On Tue, Jan 6, 2009 at 3:22 AM, vasu kpvas...@gmail.com wrote: hello sir, I am new to GWT , I would request you to help me with the server push concept with a small example , excluding the cute recursive

Re: How to change the name of the host html page in project

2009-01-04 Thread David Hoffer
/ You can see it here:- http://checkappointments.com/checkAppointments/index.html regards, Addy http://checkAppointments.com On Jan 3, 1:10 pm, David Hoffer dhoff...@gmail.com wrote: Thanks for the reply. It sounds like you are suggesting a manual process. I'm looking for an auto process

Re: How to change the name of the host html page in project

2009-01-04 Thread David Hoffer
to organize their web sites the same way or wants to call their GWT module bootstrap file index.html? As Addy says, what's the problem with Ant? On Jan 4, 7:55 pm, David Hoffer dhoff...@gmail.com wrote: In this case why not just name it statically index.html? Why wait? -Dave 2009/1/4

Re: How to change the name of the host html page in project

2009-01-04 Thread David Hoffer
resource targetPathMETA-INF/plexus/targetPath in a POM more or less does the same job in maven. no? On Jan 4, 10:36 pm, David Hoffer dhoff...@gmail.com wrote: Because not everyone uses Ant. Some use maven to build the war, it's not a standard practice to rename during

Re: How to change the name of the host html page in project

2009-01-04 Thread David Hoffer
to your taste, but I don't know what the side effects/pre-conditions it might be. As I say I just use Ant to build my wars. On Jan 4, 11:49 pm, David Hoffer dhoff...@gmail.com wrote: I don't know what plugin you are referring to. I used maven-googlewebtoolkit2-plugin which worked very well

Re: How to change the name of the host html page in project

2009-01-03 Thread David Hoffer
Could you post what you did to make this work? I am not having any success with the link http://java.dzone.com/tips/getting-rid-package-based-gwt-. Also I don't use eclipse, could you explain in non-eclipse terms how I can remove the package names from the browser URLs? -Dave 2008/12/29

Re: How to change the name of the host html page in project

2009-01-03 Thread David Hoffer
http://examples.roughian.com 2009/1/3 David Hoffer dhoff...@gmail.com Could you post what you did to make this work? I am not having any success with the link http://java.dzone.com/tips/getting-rid-package-based-gwt-. Also I don't use eclipse, could you explain in non-eclipse terms how I can

Re: Job opening for GWT developer

2008-12-28 Thread David Hoffer
Where would these jobs be located? -Dave On Sun, Dec 28, 2008 at 1:15 PM, DaBlick dabl...@gmail.com wrote: My company is looking for Java web developers with GWT experience. (Additional experience with Ext-GWT is a plus).We are a startup developing a cutting-edge web-based application

Re: IDE for GWT

2008-12-25 Thread David Hoffer
There just was a discussion on this topic, you might check the recent archives. I use IntelliJ but I suspect the best one is the IDE you are already familiar with. If you haven't used any IDE then just pick one. I think IntelliJ is the most friendly to use but that's just my opinion. IMHO

Re: What am I misunderstanding about the event model?

2008-12-23 Thread David Hoffer
Sounds good, I'll try that for DoubleClickEventListener. What lego pieces would you use to implement RightClickEventListener? -Dave On Tue, Dec 23, 2008 at 2:59 PM, lukehashj bobwazn...@gmail.com wrote: If you want the double-click event, create a DoubleClickEventListener that extends

Re: What am I misunderstanding about the event model?

2008-12-22 Thread David Hoffer
Hi Reinier, So are you saying I can't use EventListener to somehow implement double/right click support in Tree widgets and convert the Event to a TreeItem? Moreover are you saying that double/right click support cannot be implemented using GWT? Unless I want to start over and re-implement

Re: Need for a great GWT GUI library

2008-12-22 Thread David Hoffer
Yes all of the above. The LF is lacking. But what I would like to see in GWT are more 'complete' and 'extendable' widgets. For instance GWT chose to implement/support single click events in the Tree widget but did not provide any support for double click or right click support. I understand

Re: GWT RIA s ?

2008-12-19 Thread David Hoffer
Arthur, I see you have put SmartGWT in the JS wrapper camp, is this the case? I haven't heard anything about this library before and had just stumbled across it. Do you have a web site (or something) where we can find out which GWT libraries are pure GWT and okay to use? IMHO, although I know

Re: GWT RIA s ?

2008-12-19 Thread David Hoffer
On Fri, Dec 19, 2008 at 9:14 AM, David Hoffer dhoff...@gmail.com wrote: Arthur, I see you have put SmartGWT in the JS wrapper camp, is this the case? I haven't heard anything about this library before and had just stumbled across it. Do you have a web site (or something) where we can find out

Re: Need for a great GWT GUI library

2008-12-19 Thread David Hoffer
Here! Here! I'm in a similar boat as you...looking for a good pure GWT library. I don't think you will find anything as complete as SmartGWT in the pure GWT space. However you might take a look at http://code.google.com/p/gwt-mosaic/. It seems to have several nice UI elements and is pure GWT.

Re: Images using ImageBundle are only correct using IE

2008-12-18 Thread David Hoffer
Hi Todd, Thanks, I installed the DOM Inspector but not being a DOM guru I don't really know what to look for. Using the DOM Inspector I have found the problem images, here is some of the data reported. className: gwt-Image clientHeight: 26 clientHeight: 26 (Note that my images are 20x20 pixels

Re: Images using ImageBundle are only correct using IE

2008-12-18 Thread David Hoffer
I don't know why but it seems the following CSS breaks the images on all but IE. .gwt-Image { padding: 3px; border: 3px; } -Dave On Thu, Dec 18, 2008 at 7:10 AM, todd.sei...@gmail.com todd.sei...@gmail.com wrote: I had a similar issue that I later found to be caused be some CSS. GWT

Re: Standard/Simple GWT CSS?

2008-12-15 Thread David Hoffer
-- Arthur Kalmenson On Tue, Dec 9, 2008 at 9:40 AM, David Hoffer dhoff...@gmail.com wrote: Hi Arther, Your comments are well taken. Since I have heard this before we have used pure GWT. However, at this point however, I do think GWT missed it a bit here because most Java programmers do

Re: GWT Image Cache problem

2008-12-15 Thread David Hoffer
Thanks Jason, I could try this as a test. However I have several 'default' images these dynamic images revert to if not set and it would be a huge hack/pain to have to create duplicates of these with random/unique names. Is there not a way to just turn caching off? -Dave On Mon, Dec 15, 2008

Re: GWT Image Cache problem

2008-12-15 Thread David Hoffer
Jason, I guess it would also be okay if caching was on AND that caching worked. The problem is that caching is on and does not work. -Dave On Mon, Dec 15, 2008 at 10:32 AM, David Hoffer dhoff...@gmail.com wrote: Thanks Jason, I could try this as a test. However I have several 'default

Re: GWT Image Cache problem

2008-12-15 Thread David Hoffer
Oh, I see just a fake cache buster like ?timestamp does the trick. I wish GWT could have abstracted away this nonsense; you would never have to add hacks like this with Java/Swing. -Dave On Mon, Dec 15, 2008 at 10:23 AM, Jason Essington jason.essing...@gmail.com wrote: You could try

Re: GWT Image Cache problem

2008-12-15 Thread David Hoffer
jason.essing...@gmail.com wrote: On Dec 15, 2008, at 12:22 PM, David Hoffer wrote: Oh, I see just a fake cache buster like ?timestamp does the trick. yes, that is what I was talking about ... I wish GWT could have abstracted away this nonsense; well, if this sort of thing was included

Re: Standard/Simple GWT CSS?

2008-12-12 Thread David Hoffer
and layout of your application. You might also find the following GWT blog posting on L F an interesting read: http://googlewebtoolkit.blogspot.com/2008/12/gwt-no-need-to-shortchange-your-style.html -- Arthur Kalmenson On Tue, Dec 9, 2008 at 9:40 AM, David Hoffer dhoff...@gmail.com wrote

Re: TextBox listener for contents changed?

2008-12-10 Thread David Hoffer
It looks like KeyboardListenerAdapter's onKeyUp will do what I need. -Dave On Wed, Dec 10, 2008 at 5:50 PM, dhoffer [EMAIL PROTECTED] wrote: Does anyone know how to configure GWT's TextBox so I can be notified when its contents changes? I have just found out that addChangeListener does not

Re: Standard/Simple GWT CSS?

2008-12-09 Thread David Hoffer
in a Swing-style by using standard layouts (BorderLayout, CenterLayout,...). We choose Ext GWT because it is a full GWT library (others are wrapping a JS library), it provides a simple MVC layer and has more documentation. Regards On 8 déc, 14:34, David Hoffer [EMAIL PROTECTED] wrote: Hi Gregor

Re: How to change tab widget in TabPanel?

2008-12-09 Thread David Hoffer
It looks like I might be able to change the tab via setTabHTML on the TabBar. There is no way to get and modify the same component that was placed in the tab bar but I might be able to set its HTML to the same effect. -Dave On Tue, Dec 9, 2008 at 8:44 AM, dhoffer [EMAIL PROTECTED] wrote: How

Re: How to change tab widget in TabPanel?

2008-12-09 Thread David Hoffer
a Map of the widgets you load into the TabBar headers and manipulate (or replace) them as required as tabs are selected (via the event system). regards gregor On Dec 9, 3:59 pm, David Hoffer [EMAIL PROTECTED] wrote: It looks like I might be able to change the tab via setTabHTML

Re: Images, and 'public' locations?

2008-12-08 Thread David Hoffer
vanilla servlet, which retrieves the Blob and streams out the bytes as an image. That works. I can send you the code for that if you want to go that way. Not quite what you are looking for, perhaps. Cheers, Michel On Dec 8, 9:58 am, David Hoffer [EMAIL PROTECTED] wrote: I don't have

Re: Standard/Simple GWT CSS?

2008-12-07 Thread David Hoffer
exactly like someone else's. Sorry, but I think you are going to have to let your creative flair loose. You might even get to like it. Ian http://examples.roughian.com 2008/12/7 David Hoffer [EMAIL PROTECTED] Well I'm new to GWT and I don't know CSS. What I would like is CSS

Re: Images, and 'public' locations?

2008-12-07 Thread David Hoffer
I don't have a definitive answer as I have a similar problem and am looking for the final solution. However it is my understanding you just need to put the files/images anywhere that is under the ROOT of your web server then you just pass the relative path (from ROOT) to the client. -Dave On

Re: Standard/Simple GWT CSS?

2008-12-06 Thread David Hoffer
Well I'm new to GWT and I don't know CSS. What I would like is CSS for the standard GWT widgets panels that would give some some standard look (such as a Windows platform look). I applied one of the standard GWT themes and it helped some, especially menus but buttons, trees, etc look quite bad.

Re: Problem updating image URL

2008-12-04 Thread David Hoffer
PROTECTED] wrote: Hi, Does this fail in a browser agnostic way? On Dec 3, 5:57 am, David Hoffer [EMAIL PROTECTED] wrote: Why do you think final may be a problem? I don't change the image instance only set the URL on the already existing image. Does GWT not like final? -Dave On Tue

Re: Problem updating image URL

2008-12-03 Thread David Hoffer
Why do you think final may be a problem? I don't change the image instance only set the URL on the already existing image. Does GWT not like final? -Dave On Tue, Dec 2, 2008 at 11:23 PM, mon3y [EMAIL PROTECTED] wrote: Might it have something to do with the word final when declaring image?

How to add Tree listener for single, double right click mouse events?

2008-12-02 Thread David Hoffer
I see that GWT's Tree control only provides single click notification. How can I add support for double right click events? I see that I need to add sink events such as Event.ONDBLCLICK and I see that I get notified via the onBrowseEvent() method. The question is, how can I convert the event

Re: Stack overflow at line: 0

2008-12-02 Thread David Hoffer
Looks like there is no known fix yet. Can I switch to Firefox in hosted mode? I don't know why it is using Windows Internet Explorer, is that something that I can specify? -Dave On Tue, Dec 2, 2008 at 11:56 AM, markmccall [EMAIL PROTECTED] wrote: See this thread:

How to remove a MenuItem's sub menubar?

2008-11-26 Thread David Hoffer
How can I dynamically set remove a menu item's sub menubar? If I set the sub menubar to a new empty instance of MenuBar then I get runtime IndexOfOfBounds errors when the user hovers where the sub menubar would be. If i set the the sub menubar to null it crashes when it runs. If I get the

How to set image/icon for MenuItem?

2008-11-25 Thread David Hoffer
GWT newbie question: I need to create a menu bar with menu items where some items have dynamic icons; that is some of the icons change depending on program state. I don't see any methods in GWT to set the icon for a menu item. Rather it seems it uses a static set of images via the

How to use MenuBar.MenuBarImages?

2008-11-25 Thread David Hoffer
Can someone explain how to use the MenuBar.MenuBarImages interface? I have an ImageBundle with methods for various images. However the menu bar class wants a MenuBar.MenuBarImages instance. this later interface only has one method menuBarSubMenuIcon(). How is this used? How do I specify

Problems with GWT serialization

2008-11-22 Thread David Hoffer
I am having trouble creating GWT user defined data types that are serializable. I get a compiler error saying something like Type X was not serializable and has no concrete serializable subtypes. For example I have: public interface IDisplayableU extends IsSerializable{ U getURL(); } public

GWT Collapsible dialog box

2008-11-21 Thread David Hoffer
I need to show a GWT error dialog where I can set the title and error message but also need a lower portion where I can show a detailed error message. I want the lower portion to be collapsible via a button or something so that the user has the option to see it or not. Does something like this

Re: GWT Collapsible dialog box

2008-11-21 Thread David Hoffer
, Nov 21, 2008 at 9:23 AM, David Hoffer [EMAIL PROTECTED] wrote: I need to show a GWT error dialog where I can set the title and error message but also need a lower portion where I can show a detailed error message. I want the lower portion to be collapsible via a button or something so

Re: GWT Collapsible dialog box

2008-11-21 Thread David Hoffer
. Everything you're asking for can be created as a simple composite of existing widgets. On Fri, Nov 21, 2008 at 9:34 AM, David Hoffer [EMAIL PROTECTED] wrote: Possibly, I'm not sure what a DisclosurePanel is. What I'm looking for is a DialogBox with a title, a main message in the dialog box