Re: I have a problem with GWT 2.1 development mode

2011-03-02 Thread Rob Tanner
Thanks! adding -bindAddress argument resolved the problem. On Mar 2, 1:24 pm, Thomas Broyer t.bro...@gmail.com wrote: Your browsers should display this page, which contains the instructions to solve the issue:http://code.google.com/p/google-web-toolkit/wiki/TroubleshootingOOPHM See

Re: How can I tell if I'm at the bottom of a ScrollPanel()

2011-03-01 Thread Rob Tanner
= scrollPanel.getElement().getScrollHeight() - scrollPanel.getElement().getClientHeight(); Thanks, John LaBanca jlaba...@google.com On Mon, Feb 28, 2011 at 4:44 PM, Rob Tanner caspersg...@gmail.com wrote: Hi, I have an application where a user needs to read through the a document displayed

Is it possible to override a ListBox()'s functionality

2011-03-01 Thread Rob Tanner
the other items so that I can generate errors and get the invalid entries corrected. Is that ever possible to do at least across the major browsers. I am using GWT 2.1. Thanks, Rob Tanner Linfield College -- You received this message because you are subscribed to the Google Groups Google Web

Re: Why do I have to close this dialogue box twice to get it to go away

2011-02-28 Thread Rob Tanner
You were right and it took me a while to find the second instance of creating the DialogBox(). Thanks, Rob On Feb 24, 2011, at 3:38 PM, John LaBanca wrote: Widgets can't duplicate themselves, and even if you call clone() on the element, the event handlers wouldn't work. You might

How can I tell if I'm at the bottom of a ScrollPanel()

2011-02-28 Thread Rob Tanner
this? Thanks, Rob Tanner Linfield College -- 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-toolkit@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr

Why do I have to close this dialogue box twice to get it to go away

2011-02-24 Thread Rob Tanner
show() I did the quick and dirty debug trick of adding a System.err.println() statement right before the show() and I got only a single output on the console. I am using using GWT 2.1. Any ideas about what's going on? Thanks, Rob Tanner Linfield College -- You received this message because you

Can't seem to override checkPermutationStrongName()

2011-01-10 Thread Rob Tanner
executing the override version of the checkPermutationStringName() method, and it looks like I am indeed executing my override. So something more must be required, but I just don't know what. Any suggestions? ~ Rob -- You received this message because you are subscribed to the Google Groups Google

com.google.gwt.dev.shell.mac.LowLevelSaf not found

2011-01-07 Thread Rob Tanner
1.7.1 to 2.1.x and it comes up in development mode just fine. But my older, larger, and much more complex apps all get the class not found error. What would cause the difference? ~ Rob -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group

Re: com.google.gwt.dev.shell.mac.LowLevelSaf not found

2011-01-07 Thread Rob Tanner
development project. I removed the jarfile, made sure it was also removed from the runtime path, and all began to work. Hooray!! ~ Rob -- 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

How do I override parameters in web.xml

2011-01-06 Thread Rob Tanner
move it into production, it talks to the production servers and there's no requirement that I remember to change to contents of web.xml to accomplish that bit of magic. How do I do the same thing in development mode in the toolkit. Thanks, Rob -- You received this message because you

Re: Unknown problem upgrading from 1.7.1 to 2.1.0

2010-12-27 Thread Rob Tanner
Yes I did. It's called read the release notes (or, as they say, RTFM :-) ). Buried within the document is a small notation that the hosted mode is renamed to development mode and that the old hosted mode browser is no longer a part of the toolkit. Click on the development mode tab and

Re: Is encryption over RCP possible?

2010-12-15 Thread Rob Coops
are using trojans to listen in on the client side. You can simply not grantee safety online it is simply not possible as there are always attacks that can provide access via routes that you can simply not control. On Wed, Dec 15, 2010 at 6:17 PM, UseTheFork jvers...@gmail.com wrote: Hi Rob

Unknown problem upgrading from 1.7.1 to 2.1.0

2010-12-10 Thread Rob Tanner
in version 1.7.1. I have to do this every time. How do I permanently I get rid of that program argument until I ready to tackle the upgrade. Thanks, Rob Tanner Linfield College -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: Java Exception lost in 2.1.0 works in 2.0.4

2010-11-22 Thread Rob Hennessy
I compiled with detailed style and debugged both versions and it appears to the newer version is not handling one of my finally blocks correctly. In 2.1.0 the if statement in the finally block is not generated, but it is there in the 2.0.4. Should I open an issue for this? Thanks, -Rob Here's

Java Exception lost in 2.1.0 works in 2.0.4

2010-11-18 Thread Rob Hennessy
, -Rob -- 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. For more options

Re: why we probably won't use GWT for a large UI project

2010-08-13 Thread Rob
On Aug 12, 6:47 pm, Kevin Qiu kevin.jing@gmail.com wrote: Totally agree with lineman78 on the use of SmartGWT. We used SmartGWT to build a prototype, only to find out that mixing Js library wrapper with native GWT is bad. It's super easy in SmartGWT if you're building a simple CRUD

Re: why we probably won't use GWT for a large UI project

2010-08-12 Thread Rob
Hi Marius, Sorry I can't share the code as it isn't open source, however it isn't that hard to do - just take a look at the RequestBuilder class. Rob On Aug 10, 10:59 am, marius.andreiana marius.andrei...@gmail.com wrote: Hi Rob, Would you share a sample project (full source code) using REST

Re: why we probably won't use GWT for a large UI project

2010-08-10 Thread Rob
with it at all - in fact I've now started using it instead of GWT-RPC simply because it means that our other clients can then easily make use of the various services our server provides. Rob On Aug 10, 10:03 am, Paul Robinson ukcue...@gmail.com wrote: gwt-dnd works very well - you probably shouldn't use

Re: Firing native events in GWT?!

2010-08-03 Thread Rob Coops
No idea if it is the right thing to do but you could just call the onKeyPressed method of the widget in quesion can't you? On Tue, Aug 3, 2010 at 11:40 AM, Blaze baze...@gmail.com wrote: Hi all, I have one question...how can we fire a native event in gwt...?? by native event I think on let

Re: Firing native events in GWT?!

2010-08-03 Thread Rob Coops
dont no how can be done... On Tue, Aug 3, 2010 at 11:45 AM, Rob Coops rco...@gmail.com wrote: No idea if it is the right thing to do but you could just call the onKeyPressed method of the widget in quesion can't you? On Tue, Aug 3, 2010 at 11:40 AM, Blaze baze...@gmail.com wrote: Hi all, I

Re: How to disable menu items?

2010-08-03 Thread Rob Coops
So what you are saying is that you need a way for the menu to detect which user/user group is looking at the menu. As you are already saying you have user groups it should not be to hard to inform the menu about the user group that is trying to open it. Once the menu knows which group is trying

Re: CSS and panel alignment

2010-08-02 Thread Rob Coops
docklayoutpannel and layoutpannel will give you div's that will make your life a lot easier as they will let the children inherit these settings just like you expect them to do. Regards, Rob -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: A little help

2010-07-28 Thread Rob Coops
:-) Asking other will not help you much in understanding why you are doing certain parts and why you would not do things in a slightly different way. Regards, Rob On Tue, Jul 27, 2010 at 11:57 PM, Diego Venuzka dvenu...@gmail.com wrote: Hello guys! I'm going to do a work for my course, and i

Extracting the year from a Date() object

2010-06-07 Thread Rob Tanner
a Calendar() object the application doesn't know what it is. How can I extract the year from a Date() object and not fall back on a deprecated method? Thanks, Rob -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Getting the default DateBox() picker to advance year at a time

2010-06-02 Thread Rob Tanner
anyway to add year at a time as well (25 or more years of moths is a lot of clicks). Is there anyway to accomplish that? Thanks, Rob -- 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

How do i implement in a ListBox a select options trick I do in HTML

2010-05-28 Thread Rob Tanner
to the empty element. Using a ListBox, it's easy enough to leave the first element (index 0) empty. But how do I disable that first element so that it can't be selected? Thanks, Rob -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Do handlers interrupt each other or are they stacked

2010-04-30 Thread Rob Tanner
on? Thanks, Rob -- 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. For more

How do I override Safari's default behavior when the TAB key is pressed

2010-03-24 Thread Rob Tanner
ideas? Thanks, Rob -- 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

Two independent events that can be triggered at the same time -- how to control conflict?

2010-03-11 Thread Rob Tanner
field looses focus and an authentication process is triggered resulting in an error. So, my question is: when the don't know button has been pressed, how can I prevent the async call that does the authentication? Thanks, Rob Tanner Linfield College -- You received this message because you

Re: Smart GWT 2.1 Released

2010-03-03 Thread Rob Smith
Which sample doesn't work. I am using Chrome and all the samples are working for me. BTW - Love the new skin and the ability to add widgets to grid cells. On Mar 3, 8:55 am, Roger Studner rstud...@gmail.com wrote: it pains me to say that the samples doesn't work in GOOGLE chrome heh Roger

Re: Problems with SSL and hosted mode

2010-01-15 Thread Rob Tanner
to change some settings... I have developed a GWT 1.5 app with the same declaration in web.xml and it worked perfect on development systems. I was using a external Tomcat 6.0.17, not the built-in tomcat do you have changed the -startupUrl to https:// ? On Mon, Jan 11, 2010 at 2:05 PM, Rob Tanner

Fun with log4j logging

2010-01-15 Thread Rob Tanner
} (%F:%L) -- %m%n The above should result in a log entry (though a not a very informative one), but it doesn't log a thing. I'm assuming that there is some other step required to make this work in GWT? Any ideas? Thanks, Rob -- You received this message because you are subscribed

Problems with SSL and hosted mode

2010-01-11 Thread Rob Tanner
to remember to modify the web.xml file each time a move a GWT app into production. I can't imagine that there's not a solution to this, I just don't know what it is. Can anybody help? Thanks, Rob -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group

Re: Eclipse locks up when opening GWT project

2010-01-07 Thread Rob Tanner
my fingers that the defective file wasn't on the CVS copy of the application. It wasn't and so deleting the project from Eclipse and then recreating it from CVS took care of the problem. All is now working. -- Rob On Jan 4, 2:29 pm, Rob Tanner caspersg...@gmail.com wrote: Hi, I'm running

How to exclude server-side jar file from GWT compile / validation

2010-01-06 Thread Rob Wood
In my GWT app my RemoteService implementation executes code from abc.jar that has server-side only Java code. I have included abc.jar in my project's class path, but it does not belong to any module inherited by this project's module. When I run this app in Hosted Mode I get tons of Error

Re: How to exclude server-side jar file from GWT compile / validation

2010-01-06 Thread Rob Wood
there should not be client packages. Regards Rohit On Jan 6, 9:23 am, Rob Wood rob.a.w...@gmail.com wrote: In my GWT app my RemoteService implementation executes code from abc.jar that has server-side only Java code.  I have included abc.jar in my project's class path, but it does

Re: How to exclude server-side jar file from GWT compile / validation

2010-01-06 Thread Rob Wood
...@gmail.com wrote: On Wed, Jan 6, 2010 at 1:10 PM, Rob Wood rob.a.w...@gmail.com wrote: The abc.jar does not include any client packages as far as I can tell. Since the above post I've changed this project so that a few files from abc.jar now implement IsSerializable so they can be passed

Re: How to exclude server-side jar file from GWT compile / validation

2010-01-06 Thread Rob Wood
I've done some further analysis: I'm only getting errors for server side classes that have a reference to one of the classes implementing IsSerializable (either directly or through inheritance). GWT Compiler does not complain about the classes implementing IsSerializable (or their child classes)

Re: Eclipse locks up when opening GWT project

2010-01-05 Thread Rob Tanner
Shawn, That's the easy part. Select the Run Configuration for your app and then select the (x)=Arguments tab. There's a box labelled vm arguments. Type -d32 to force 32 bit environment. On Jan 4, 5:04 pm, Shawn Brown big.coffee.lo...@gmail.com wrote: I'm running identical environments pm my

Eclipse locks up when opening GWT project

2010-01-04 Thread Rob Tanner
in the error log as above, but it still locks up. Any ideas? -- Rob -- 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

Using Eclipse plugin and having a problem saving back to CVS

2009-12-15 Thread Rob Tanner
I am having problems saving back to CVS. Contrary to the error message, the only party saving back to CVS is me and only from a single computer. The problem effects only my GWT development. I am using the 3.5 plugin, 1.1.2.v200910131704. Any ideas? -- Rob The server reported an error while

Re: How can I disable the browser's default right click response?

2009-12-08 Thread Rob Tanner
= event.getNativeEvent()) in order to detect which button, etc, and the right button is never caught. -- Rob On Dec 8, 7:32 am, Mohamed Mansour m0.interact...@gmail.com wrote: Can't you just return false for oncontextmenu ? On Dec 8, 5:01 am, Alexander the.malk...@gmail.com wrote: Tried

Converting an Event object into a BlurEvent object

2009-12-07 Thread Rob Tanner
other so that I can process the onBlur? Thanks, Rob -- 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: Need help getting panel fade to work properly

2009-12-04 Thread Rob Tanner
Gave up on 2.0 because of the -style bug (another thread) but did come up with a workaround to accommodate Firefox. Original code: DOM.setStyleAttribute(glass.getElement(), height, 100%); Workaround: DOM.setStyleAttribute(glass.getElement(), height, new

How can I disable the browser's default right click response?

2009-12-04 Thread Rob Tanner
ideas? Thanks, Rob -- 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. For more

Re: What does Unknown argument: -style mean?

2009-12-03 Thread Rob Tanner
of the Google plugin? You're definitely running the RC2 compiler. On Wed, Dec 2, 2009 at 4:28 PM, Rob Tanner caspersg...@gmail.com wrote: In order to solve another problem, it was recommended that I switch to GWT 2.0RC2 (I was running 1.7.1).  I downloaded both the toolkit and the Eclipse plugin

Re: What does Unknown argument: -style mean?

2009-12-03 Thread Rob Tanner
Yep. It sure looks like the same thing. On Dec 3, 6:20 am, Ezra esk...@gmail.com wrote: Your unknown argument: -style issue seems similar tohttp://groups.google.com/group/google-web-toolkit/browse_thread/threa... . On Dec 2, 6:45 pm, Rob Tanner caspersg...@gmail.com wrote: I think I

Need help getting panel fade to work properly

2009-12-02 Thread Rob Tanner
is Firefox 3.5.5. Any ideas? Thanks, Rob -- 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: Need help getting panel fade to work properly

2009-12-02 Thread Rob Tanner
I presume you mean DialogueBox and setGlassEnable() must be a 2.0RC2 feature. On Dec 2, 10:46 am, Yozons Support on Gmail yoz...@gmail.com wrote: Not sure when it was released (I'm using 2.0RC2 now), but did you just try the DialogBog.setGlassEnabled(true) call? -- You received this message

What does Unknown argument: -style mean?

2009-12-02 Thread Rob Tanner
here. Any ideas? -- Rob -- 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: What does Unknown argument: -style mean?

2009-12-02 Thread Rob Tanner
I think I already checked more than once, but checking again never hurts. Everything points to 2.0RC2. On Dec 2, 3:36 pm, Yozons Support on Gmail yoz...@gmail.com wrote: It really sounds like your project is not using the 2.0RC2 compiler.  Double check the eclipse project properties for the

Comparing calendar dates for equality

2009-11-23 Thread Rob Tanner
Hi, I need to compare two calendar dates (Strings with just day, month and year) for equality but it would be nice if there existed a formatter that I can use on the client side. Is there, and I just haven't found it? -- Rob -- You received this message because you are subscribed

Re: GWT hosted mode crashing after update

2009-11-17 Thread Rob Tanner
this Apple bug will be fixed in Safari 4.0.5, but there's no way of knowing when it will be released. On Nov 16, 9:35 am, Rob Tanner caspersg...@gmail.com wrote: Hi, I was running along last week just perfectly with the GWT Eclipse plugin v1.7.1 and Eclipse 3.5.1 on an Mac running Snow Leopard

GWT hosted mode crashing after update

2009-11-16 Thread Rob Tanner
eip=92a2477b. Since it all worked fine last week, I'm sure this is related to the update. I'm not exactly sure what the message is telling me other than I'm trying to use memory I shouldn't. Does anyone know of a work- around? -- Rob -- You received this message because you are subscribed

Re: Major memory leak with RPC, Internet Explorer and GWT 2.0 (MS1 MS2)

2009-11-14 Thread Rob
See http://code.google.com/p/google-web-toolkit/issues/detail?id=4133 and http://code.google.com/p/google-web-toolkit/issues/detail?id=4229 Issue 4133 was raised almost a month ago but doesn't seem to have been acknowledged yet - would anyone from the GWT team care to comment ? Cheers Rob

Major memory leak with RPC, Internet Explorer and GWT 2.0 (MS1 MS2)

2009-11-13 Thread Rob
with a very simple RPC example which I can supply if required. Has anyone else noticed anything similar ? Cheers Rob -- 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

IE8 and DecoratorPanels

2009-11-10 Thread Rob Tanner
the top and bottom repeating images are displaying. All the images are GIFs in case that's significant. Any ideas? Thanks, Rob --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

GWT appears to be overriding my css

2009-11-05 Thread Rob Tanner
make a lot of sense, but that's what it looks like. Any ideas. -- Rob --~--~-~--~~~---~--~~ 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-toolkit

Access to WavePanel source code

2009-11-02 Thread Rob Wood
Is it possible to get access to WavePanel's source code to extend behaviors? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

RichTextArea with non-editable hyperlinks

2009-10-30 Thread Rob Wood
I'm porting an application from Eclipse RCP to GWT. One of the features I have are links embedded in text which the users can't edit directly -- only through menu options. As far as I can see, the best way to implement this in GWT is through hyperlinks in the RichTextArea widget, but there is

[gwt-contrib] Re: Any plans for supporting Scala ?

2009-10-05 Thread Rob Heittman
I'd be willing to work on such a project once GWT 2.0 final lands, which will help stabilize the rest of my world and give me some free time to play. On Mon, Oct 5, 2009 at 12:10 PM, Lex Spoon sp...@google.com wrote: If anyone wants to work on this, I can give all the relevant Scala and GWT

[gwt-contrib] Re: Any plans for supporting Scala ?

2009-10-01 Thread Rob Heittman
I think Lex Spoon knows a thing or two about Scala. I'm really surprised, nay shocked, that he hasn't ported GWT to Scala yet, on his lunch break! j/k :-) 2009/10/1 Maxime Lévesque maxime.leves...@gmail.com What kind of effort would it take ?

how to fill available space with a textarea widget

2009-08-04 Thread Rob
? It seems like I need to write some Javascript to look at the height of the container and set the height of the textarea. If so, is that something that's already solved somewhere in GWT? I played around some with different panels, but didn't see anything. thanks, Rob html head style #container

[gwt-contrib] Re: Async interface black magic

2009-08-03 Thread Rob Heittman
I needed a better REST client in the browser and GWT is one, - Rob On Aug 3, 2009, at 8:07 PM, John Patterson jdpatter...@gmail.com wrote: On 3 Aug 2009, at 22:22, Bruce Johnson wrote: Although it feels less convenient, the async nature of RPC is actually valuable for usability

[gwt-contrib] Re: Async interface black magic

2009-08-03 Thread Rob Heittman
I bet you were into the lovely EJB artifacts too? Ha ha this is strangely reminiscent. No, I wasn't. Really, I don't see the correlation. But, as you like RPC abstractions and I don't, I think we can just agree to disagree on religious principles, and leave it at that. Maybe take it up

[gwt-contrib] Re: DockLayoutPanel

2009-07-27 Thread Rob Heittman
Sounds perfect. Thanks, Joel! On Mon, Jul 27, 2009 at 8:07 AM, Joel Webber j...@google.com wrote: I completely understand your pain -- HTML layout is an absolute nightmare. I'm about to start the review thread for the core Layout class and supporting code (and post an initial design doc at

[gwt-contrib] Re: DockLayoutPanel

2009-07-26 Thread Rob Heittman
Hi Joel, A little cri de coeur ... whether as a branch, patchset, or note passed under the desk, I would really love to have a look at your draft DockLayoutPanel in the not too distant future. We've also had to reinvent that wheel to meet some project time constraints, but I'd like to try to

left nav widget on incubator docs page

2009-07-16 Thread Rob
Hi, I was looking at the incubator docs: http://code.google.com/docreader/#p=google-web-toolkit-incubator I like how that left nav tree can be toggled away. It's not quite the same as the CollapsiblePanel demo in the incubator. Is this is a widget in GWT that I missed? thanks, Rob

TextArea, command-v for paste just beeps

2009-07-14 Thread Rob
. When I simplified the code to this, for posting it here, it started working in Safari but still not in hosted mode. thanks, Rob public void onModuleLoad() { TextArea a = new TextArea(); a.setVisibleLines(10); a.setCharacterWidth(80); RootPanel.get(all).add

Re: ou will not be able to access files from your working directory on the production server

2009-07-14 Thread Rob
figure anything out. Rob --~--~-~--~~~---~--~~ 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-Toolkit@googlegroups.com To unsubscribe from this group, send email

Eclipse plugin for Eclipse 3.5 (Galileo)

2009-06-25 Thread Rob Tanner
When will a version of the plugin be released for Eclipse 3.5 (or can I simply use the version for 3.4). I would like to use the new Eclipse, but GWT has become one of my main tools. Thanks, Rob --~--~-~--~~~---~--~~ You received this message because you

docs on creating custom widgets?

2009-06-25 Thread Rob
to highlight and attach notes to the document -- as students would in a textbook. Is such a thing possible with a custom widget? Any libraries I should check to see if such a thing already exists? thanks, Rob --~--~-~--~~~---~--~~ You received this message because you

[gwt-contrib] Re: naming runAsync calls

2009-06-19 Thread Rob Heittman
I've been working to improve load behavior of a very large application with a few dozen runAsync calls, and for Javadoc clarity I've been putting each call in its own method anyway -- found this very useful to track the purpose and timing of each split, and document any known implications. So in

Setting the max width for a panel

2009-06-17 Thread Rob Tanner
how many pixels wide the text is before I set the panel width/ Thanks, Rob --~--~-~--~~~---~--~~ 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-Toolkit

Browser compatibility issue??

2009-06-01 Thread Rob Tanner
to look to see what the problem might be? Thanks, Rob --~--~-~--~~~---~--~~ 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-Toolkit@googlegroups.com To unsubscribe from

Re: Browser compatibility issue??

2009-06-01 Thread Rob Tanner
an additional empty row or adding another empty panel as filler, I can get around the problem but that seems to me to be a very awkward way to work around the issue. Is there a simpler solution? Thanks, Rob On Jun 1, 1:58 pm, Rob Tanner caspersg...@gmail.com wrote: It's my first app and this might

How do I cancel closing a window

2009-05-29 Thread Rob Tanner
(CloseEvent event) { if (membershipData.isLoggedIn()) if (!Window.confirm(Are you sure?)) { THE USER HIT CANCEL, SO WHAT DO I DO HERE? } } }); Thanks, Rob --~--~-~--~~~---~--~~ You received this message because you are subscribed

Re: How do I cancel closing a window

2009-05-29 Thread Rob Tanner
or not and so resolves my problem. -- Rob On May 29, 4:28 pm, Rob Tanner caspersg...@gmail.com wrote: Hi, I want to capture a window close event and if the user is still logged in, present a confirmation box and then abort the close if the user hits the cancel button.  What I don't know how to do

How to gray out readonly text in a text box

2009-05-20 Thread Rob Tanner
, Rob --~--~-~--~~~---~--~~ 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-Toolkit@googlegroups.com To unsubscribe from this group, send email to google-web-toolkit

Re: How to gray out readonly text in a text box

2009-05-20 Thread Rob Tanner
On May 20, 3:16 pm, Jeff Chimene jchim...@gmail.com wrote: On 05/20/2009 02:31 PM, Rob Tanner wrote: If I don't explicitly set a style for a TextBox widget, it picks up the stylesheet .gwt-TextBox and .gwt-TextBox-readonly from the standard.css file.  That's fine except that I want

Re: How to gray out readonly text in a text box

2009-05-20 Thread Rob Tanner
I was looking the Eclipse layout and somehow just thought it was in WEB-INF. You know how that goes, you press send and then hit yourself in the forehead for being a dork. It's in the war folder at the same level as WEB-INF and the problem turned out to be a spelling error. Thanks, Rob On May

RPC Confusion

2009-05-14 Thread Rob Tanner
that it includes all the possible data components and flags so that the server will no what to do? Or is it either/or and thus a design choice? Thanks, Rob --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group

TabPanel border -- how do I make it invisible?

2009-05-12 Thread Rob Tanner
I'm attempting to use my first TabPanel. The TabPanel is displayed with a two or 3 pixel border in a light blue. While I want the tab bar itself is fine, I want the border on the panel (DeckPanel??) to be zero pixels. How do I get rid of it? Thanks, Rob

Hosted mode debugging with 1.6

2009-05-01 Thread Rob
being loaded ? Thanks Rob --~--~-~--~~~---~--~~ 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-Toolkit@googlegroups.com To unsubscribe from this group, send email

Re: Hosted mode debugging with 1.6

2009-05-01 Thread Rob
into my gwt.xml file (and removed them from the .html file) and not hosted mode debugging works. Rob On May 1, 12:00 pm, Rob rob.a.st...@gmail.com wrote: I have a fairly complex application (GWT, gwt-ext, RPC) that was developed using netbeans and GWT 1.5. Debugging was always a bit

Recommendations for a good book on GWT

2009-04-30 Thread Rob Tanner
as well, lots of examples, cookbook, etc. Looking on Amazon there are more than just a couple of books about GWT. Can anyone recommend a good book for a GWT beginner. Thanks, Rob --~--~-~--~~~---~--~~ You received this message because you are subscribed

StockWatcher tutorial -- it works but why?

2009-04-27 Thread Rob Tanner
); The onClick handler is executed when the removeStockButton is clicked. The value of symbol comes from the newSymbolTextBox when the stock is entered. So how does the onClick handler know the value of symbol when the button is pressed? Thanks, Rob

Re: SWT seems to think I'm running on Linux and not a Mac ???

2009-04-24 Thread Rob Tanner
On Apr 24, 8:37 am, Jeff Chimene jchim...@gmail.com wrote: On Thu, Apr 23, 2009 at 9:05 PM, Rob Tanner caspersg...@gmail.com wrote: On Apr 23, 6:11 pm, Jeff Chimene jchim...@gmail.com wrote: On 04/23/2009 04:57 PM, Rob Tanner wrote: On Apr 23, 4:25 pm, Jeff Chimenejchim...@gmail.com

Re: SWT seems to think I'm running on Linux and not a Mac ???

2009-04-23 Thread Rob Tanner
On Apr 22, 5:35 pm, Jeff Chimene jchim...@gmail.com wrote: On 04/22/2009 04:15 PM, Rob Tanner wrote: On Apr 22, 1:00 pm, Jeff Chimenejchim...@gmail.com  wrote: On 04/22/2009 12:06 PM, Rob Tanner wrote: Hi, I've been going back and forth with Instantiations tech support over

Re: SWT seems to think I'm running on Linux and not a Mac ???

2009-04-23 Thread Rob Tanner
) No reason to use the app engine sdk one way or the other. What I'm really trying to figure out is why GWT for Macs appears to be trying to use Linux GTK libraries instead of Mac Carbon libraries. -- Rob --~--~-~--~~~---~--~~ You received this message because you

Re: SWT seems to think I'm running on Linux and not a Mac ???

2009-04-23 Thread Rob Tanner
On Apr 23, 10:36 am, Rajeev Dayal rda...@google.com wrote: What version of the JDK are you using on your Mac? Are you using Java 1.6 or Java 1.5? On Thu, Apr 23, 2009 at 1:27 PM, Rob Tanner caspersg...@gmail.com wrote: On Apr 23, 1:13 am, Salvador Diaz diaz.salva...@gmail.com wrote

Re: SWT seems to think I'm running on Linux and not a Mac ???

2009-04-23 Thread Rob Tanner
On Apr 23, 10:36 am, Rajeev Dayal rda...@google.com wrote: What version of the JDK are you using on your Mac? Are you using Java 1.6 or Java 1.5? On Thu, Apr 23, 2009 at 1:27 PM, Rob Tanner caspersg...@gmail.com wrote: On Apr 23, 1:13 am, Salvador Diaz diaz.salva...@gmail.com wrote

Re: SWT seems to think I'm running on Linux and not a Mac ???

2009-04-23 Thread Rob Tanner
23, 2009 at 2:25 PM, Rob Tanner caspersg...@gmail.com wrote: On Apr 23, 10:36 am, Rajeev Dayal rda...@google.com wrote: What version of the JDK are you using on your Mac? Are you using Java 1.6 or Java 1.5? On Thu, Apr 23, 2009 at 1:27 PM, Rob Tanner caspersg...@gmail.com wrote

Re: SWT seems to think I'm running on Linux and not a Mac ???

2009-04-23 Thread Rob Tanner
On Apr 23, 2:46 pm, Jeff Chimene jchim...@gmail.com wrote: On 04/23/2009 10:25 AM, Rob Tanner wrote: On Apr 22, 5:35 pm, Jeff Chimenejchim...@gmail.com  wrote: On 04/22/2009 04:15 PM, Rob Tanner wrote: On Apr 22, 1:00 pm, Jeff Chimenejchim...@gmail.com   wrote: On 04/22/2009 12

Re: SWT seems to think I'm running on Linux and not a Mac ???

2009-04-23 Thread Rob Tanner
On Apr 23, 4:25 pm, Jeff Chimene jchim...@gmail.com wrote: On 04/23/2009 04:09 PM, Rob Tanner wrote: On Apr 23, 2:46 pm, Jeff Chimenejchim...@gmail.com  wrote: On 04/23/2009 10:25 AM, Rob Tanner wrote: On Apr 22, 5:35 pm, Jeff Chimenejchim...@gmail.com   wrote: On 04/22/2009 04

Re: SWT seems to think I'm running on Linux and not a Mac ???

2009-04-23 Thread Rob Tanner
On Apr 23, 6:11 pm, Jeff Chimene jchim...@gmail.com wrote: On 04/23/2009 04:57 PM, Rob Tanner wrote: On Apr 23, 4:25 pm, Jeff Chimenejchim...@gmail.com  wrote: On 04/23/2009 04:09 PM, Rob Tanner wrote: On Apr 23, 2:46 pm, Jeff Chimenejchim...@gmail.com   wrote: On 04/23/2009 10:25

SWT seems to think I'm running on Linux and not a Mac ???

2009-04-22 Thread Rob Tanner
from Google's Eclipse update site installed. My system is a MacBook Pro with 10.5.6 installed. Does this problem at all sound familiar? Thanks, Rob --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: SWT seems to think I'm running on Linux and not a Mac ???

2009-04-22 Thread Rob Tanner
On Apr 22, 1:00 pm, Jeff Chimene jchim...@gmail.com wrote: On 04/22/2009 12:06 PM, Rob Tanner wrote: Hi, I've been going back and forth with Instantiations tech support over their GET Designer Eclipse plugin.  When I try and execute a GWT application in Eclipse that I built

Re: How much slower is PRETTY mode?

2009-04-20 Thread Rob Smith
Why is it that most of Arthurs posts either have incorrect information or one of : I haven't tried it but I think.. I don't know the exact numbers but.. I heard that xxx is good / bad but I haven't tried it.. I think.. Just search the forums. Half-knowledge more dangerous than ignorance. Just a

Increasing job market demand for GWT?

2009-04-19 Thread rob
My impression from job boards is that demand for GWT is increasing in the job market. http://www.indeed.com/jobtrends?q=gwtl= Does anyone believe this is inaccurate? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

<    1   2   3   4   >