Google GWT training/consultants?

2008-09-09 Thread Douglas
...) Does Google provide support contracts if desired, or contract through a partner company for this? Consultants to help us if we needed it? This seems silly, but the suits like to feel like they've got support if it's needed. Thanks in advance, Douglas

GWT Examples

2009-08-18 Thread Douglas
Hey all, I'm new to GWT also but have a few working examples that were built in NetBeans if anyone is interested. So far I've gotten to GWTJSON project but it's not seeing the generated js in the module therefore no Search button shows on the page. It works ok for ant hosted though. The

NetBeans6.5 and rename-to=module name/DynaTable sample 1.7.0

2009-08-24 Thread Douglas
Hello All, It seems that a lot of you use Eclipse to build apps in GWT but I am using NetBeans 6.5 and the GWT version 1.7.0 and I need help to understand something about renaming modules in this IDE. I'll wait for any replies before I state the problem so that users who have experience with

CellTable + FlexTable

2011-02-25 Thread Douglas
Hello guys, I'm having a problem with the widgets CellTable and FlexTable (or Grid). I made my layout using a FlexTable. The first row is the header and into the second row I'm trying to put a CellTable, but the CellTable isn't rendering. I've tested putting the CellTable into the RootPanel

Is it possible to set a widget's complete size, including CSS decorations?

2009-08-03 Thread Jim Douglas
I'm in the process of porting a development environment to GWT in which screens are designed based on exact pixel locations and sizes. So I need to be able to create (e.g.) a ToggleButton with a total size on the screen of 90 pixels wide by 25 pixels high. The problem, of course, is if I call

Re: Does GWT work in Snow Leopard?

2009-08-28 Thread Jim Douglas
All you need to do is set Eclipse to use Java 1.5 and the problem is gone. On Aug 28, 12:52 pm, Jim Douglas jdoug...@basis.com wrote: So what's the official word on GWT and Snow Leopard?  The impression that I get from Issue #2507, and earlier threads here, is that it's a no-go

Does GWT work in Snow Leopard?

2009-08-28 Thread Jim Douglas
So what's the official word on GWT and Snow Leopard? The impression that I get from Issue #2507, and earlier threads here, is that it's a no-go; copying Java 5 from Leopard isn't a solution. http://code.google.com/p/google-web-toolkit/issues/detail?id=2507

Re: Does GWT work in Snow Leopard?

2009-08-31 Thread Jim Douglas
Hi Sumit, That workaround is really not acceptable. Because Apple considers the JVM to be part of the operating system, messing in those directories amounts to hacking the O/S. It's unsafe, unsupported, and can -- and probably will -- arbitrarily drop dead at any time with an O/S update. I

Re: DEPCRECATED Error Messages

2009-08-31 Thread Jim Douglas
Hi Stephan, Deprecated means this feature has been replaced, and should not be used. http://en.wikipedia.org/wiki/Deprecation The API documentation tells you what to use instead:

Re: Thank you google!

2009-09-02 Thread Jim Douglas
I second that. We're making rapid progress porting a Swing front end to GWT. The Google/GWT engineers have done some really impressive work here. On Sep 2, 12:17 pm, charlie charlie.f...@gmail.com wrote: Err, haven't :). On Wed, Sep 2, 2009 at 2:16 PM, charlie charlie.f...@gmail.com wrote:

How can I center arbitrary content on a fixed-size button?

2009-09-02 Thread Jim Douglas
I'm getting hung up on something that seems like it ought to be trivial. I've got a fixed-size GWT Button and I need to render it (preferably using just static CSS rules) such that any arbitrary text or HTML content a user throws at it is centered both horizontally (that part's easy) and

Re: How can I center arbitrary content on a fixed-size button?

2009-09-03 Thread Jim Douglas
-align: middle;\ user-defined-text div html Is there a better/simpler approach that I'm missing? On Sep 2, 6:27 pm, Jim Douglas jdoug...@basis.com wrote: I'm getting hung up on something that seems like it ought to be trivial.  I've got a fixed-size GWT Button and I need

CustomButton rollover effects fail when ON_MOUSE_OUT is never fired

2009-09-04 Thread Jim Douglas
I've got a set of button rules to change the background color on rollover (CSS below, but it's nothing exotic). It works if you just move the mouse in and out of the button; the CustomButton code to toggle setHovering(boolean) is triggered, and everything is good. But if something happens to

Re: Server Side: Writting a File on Disk

2009-09-06 Thread Jim Douglas
Hi Robert, That's a Google App Engine limitation; it has nothing to do with GWT. For the subset of Java classes that work in the Google App Engine, see: http://code.google.com/appengine/docs/java/jrewhitelist.html On Sep 6, 12:47 pm, Robert Lang rmlan...@gmail.com wrote: Hello, About: The

Re: Server Side: Writting a File on Disk

2009-09-06 Thread Jim Douglas
Also see: http://code.google.com/appengine/kb/java.html#writefile http://code.google.com/appengine/docs/java/datastore/overview.html On Sep 6, 1:03 pm, Jim Douglas jdoug...@basis.com wrote: Hi Robert, That's a Google App Engine limitation; it has nothing to do with GWT. For the subset

Re: Newbie to GWT 1.7 - again

2009-09-06 Thread Jim Douglas
Hi Thomas, The tutorials are very helpful; I worked through implementing the StockWatcher sample to get my head around GWT concepts (including RPC): http://code.google.com/webtoolkit/tutorials/1.6/index.html On Sep 6, 1:50 pm, Thomas Holmes thomas.j.hol...@gmail.com wrote: I posted this

Re: CustomButton rollover effects fail when ON_MOUSE_OUT is never fired

2009-09-07 Thread Jim Douglas
-up:HOVER {     border: 1px solid #cbcbcb;     background-color: #e8e8e8; } On Sep 4, 10:33 pm, Jim Douglas jdoug...@basis.com wrote: I've got a set of button rules to change the background color on rollover (CSS below, but it's nothing exotic).  It works if you just move the mouse

Re: TabPanel Overlap Bug

2009-09-07 Thread Jim Douglas
Is that the complete and exact code from your screen shot? The first thought that comes to mind is that you might be loading up those tab panels with content that's exactly 400px high -- which expands to 412px when you factor in the default 6px padding from this rule in standard.css:

Re: gwt base64 encode implementation?

2009-09-07 Thread Jim Douglas
The first page returned from this search looks like a possibility. http://www.google.com/search?q=gwt+base64 On Sep 7, 12:43 pm, Lucas de Oliveira lucasdeolive...@gmail.com wrote: Hello there guys, does gwt have any base64 client-side (js) implementation? If not, do you guys have any

Re: Does GWT work in Snow Leopard?

2009-09-08 Thread Jim Douglas
class in gwt-dev-mac.jar to remove the check for java 1.5. If you do this then you can use java 1.6 with the -d32 flag and it works fine. More details athttp://development.lombardi.com/?p=1012 On Aug 31, 6:35 pm, Jim Douglas jdoug...@basis.com wrote: Hi Sumit, That workaround

Re: Does GWT work in Snow Leopard?

2009-09-08 Thread Jim Douglas
as horrific, it's just one directory and two symlinks. Pascal On Sep 8, 5:31 pm, Jim Douglas jdoug...@basis.com wrote: Don't follow that horrific advice; it will break the next time get get a Java update from Apple: http://lists.apple.com/archives/java-dev/2009/Sep/msg00072.html

Can I get at arbitrary events using GWT?

2009-09-08 Thread Jim Douglas
I need to implement a general event handler for text controls that lets me know every time the contents have changed in any way (I guess that would be through typing, cutting or pasting). I can get partway there now in GWT 1.7.0 with a combination of ONKEYPRESS and ONCHANGE, and I can get one

Re: gwt Popup is not centered

2010-03-12 Thread Jim Douglas
Have you reviewed the sample -- with detailed comments -- near the top of the javadoc page? http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/user/client/ui/PopupPanel.html On Mar 12, 7:13 am, mariyan nenchev nenchev.mari...@gmail.com wrote: Well i am setting pixel size on

Re: Textbox React on Paste (Event)

2010-03-22 Thread Jim Douglas
It depends on what you're trying to do, Stefan. You'll need to subclass TextBox, then do this: (1) Add this to the constructor: http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/user/client/ui/UIObject.html#sinkEvents(int)

Re: Irony: GWT Showcase demo does not work with Chrome

2010-04-08 Thread Jim Douglas
It works fine here (Mac OS X 10.5.8 Leopard; Chrome 5.0.371.0). On Apr 8, 6:36 pm, Russ 10wattmindt...@gmail.com wrote: The showcase does not work for me either. Chromium version 5.0.371.0 (43913) Ubuntu. If I change themes it seems to sort of work. However, I can't select things (check

Re: Problem with Radiobuttons

2010-04-12 Thread Jim Douglas
Register a ValueChangeHandler against all RadioButtons in a given group. This won't tell you when a given radio button has become unchecked; it will only tell you when a given radio button has become checked. To work back to what radio button just became unchecked?, you need to keep track of the

Re: Java or javascript patterns to use with RegExp

2010-04-30 Thread Jim Douglas
I use this: http://java.sun.com/javase/6/docs/api/java/lang/String.html#matches(java.lang.String) But don't forget that JavaScript regex rules aren't the same as Java. On Apr 30, 6:35 am, mariyan nenchev nenchev.mari...@gmail.com wrote: Hi, i found this class

Re: RadioButton detect value change when deselection is automatic

2010-05-11 Thread Jim Douglas
You need to track ValueChangeEvents for all radio buttons in the group, and remember which radio button is currently selected at all times. If you do that, then every time you see one radio button in the group becoming selected, you know that the radio button that was previously selected just

Re: Chinese support in DatePicker

2010-05-13 Thread Jim Douglas
The showcase sample includes a DatePicker: http://gwt.google.com/samples/Showcase/Showcase.html?locale=zh_CN#!CwDatePicker On May 12, 12:04 am, John johnwum...@gmail.com wrote: I have create a DatePicker and want to show the DatePick in Chinse. For example, the Jan in the DatePicker should be

Re: About Date object in GWT

2010-05-14 Thread Jim Douglas
Just use java.util.Date; ignore the deprecation warnings. On May 14, 6:13 pm, Sabbir leo.sh...@gmail.com wrote: the methods in Date objecat as getTime, getHour, etc are deprecated ones. And in GWT calendar object is not allowed. so how do set the date object in GWT??? -- You received this

Re: Loading text alongside image inside a ComboBox

2010-05-17 Thread Jim Douglas
There's no GWT widget called ComboBox. Possibly you're using some other widget library (and should ask your question there?) If you meant the GWT ListBox, then no, it's not possible. http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/user/client/ui/ListBox.html On May 17,

Re: SimpleRadioButton getValue() ?

2010-05-20 Thread Jim Douglas
http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/user/client/ui/SimpleCheckBox.html#isChecked() http://code.google.com/p/google-web-toolkit/issues/detail?id=4018 On May 20, 12:01 am, bch...@gmail.com bch...@gmail.com wrote: Greetings, I have the following snippet :

Re: Using SliderBar from incubator

2010-05-31 Thread Jim Douglas
Leslie -- We had to fine-tune the incubator classes to work with GWT 2.x; you're welcome to our tweaked versions of SliderBar, ProgressBar, and Spinner. (We've also added vertical orientation to the SliderBar and ProgressBar.) I can't figure out how to send attachments to the list -- let me

Re: Calling Methode using JSNI failed

2010-05-31 Thread Jim Douglas
You should start by carefully reading the JSNI documentation: http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsJSNI.html http://googlewebtoolkit.blogspot.com/2008/07/getting-to-really-know-gwt-part-1-jsni.html A simple JSNI method looks like this (note the specially formatted

Re: Calling Methode using JSNI failed

2010-06-01 Thread Jim Douglas
::sendNode(Ljava/lang/String;Ljava/lang/ Integer)(TEST,@java.lang.Integer::new(I)(100)); Or change your sendNode method to take an int. Olivier On 1 juin, 04:25, Jim Douglas jdoug...@basis.com wrote: You should start by carefully reading the JSNI documentation: http://code.google.com

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

2010-06-02 Thread Jim Douglas
No, it's not possible, short of writing a custom DatePicker. You might want to vote for this open issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=3520 On Jun 2, 9:24 am, Rob Tanner caspersg...@gmail.com wrote: Hi, I'm using a DateBox() widget for users to enter their date

Re: GWT 2.0.3 + Tree widget + get tree level of selected TreeItem - Problem

2010-06-02 Thread Jim Douglas
Follow the chain of getParentItem() until it returns null. http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/user/client/ui/TreeItem.html#getParentItem() On Jun 2, 3:25 am, junior kubinca...@gmail.com wrote: Hejsan I am building GWT Tree and need to get information about

Re: GWT 2.0 and JDK 1.4

2010-06-07 Thread Jim Douglas
http://code.google.com/webtoolkit/doc/latest/FAQ_GettingStarted.html#What_are_the_system_requirements_for_GWT? What are the system requirements for GWT? Google Web Toolkit is designed to run on systems that meet the following requirements: Java: Sun Java 2 Runtime Environment 1.5 Operating system:

Re: GWT 2.0 and JDK 1.4

2010-06-07 Thread Jim Douglas
Just out of interest...what's keeping you on 1.4? It reached EOSL more than a year and a half ago: http://java.sun.com/products/archive/eol.policy.html On Jun 7, 3:56 am, Ravuthakumar ravuthaku...@gmail.com wrote: Hi, Does GWT 2.0 requires JSDK 1.5 or higher version? There is a limitation,

Re: Deployment Error !

2010-06-09 Thread Jim Douglas
I think you're looking for one of these groups: http://code.google.com/appengine/community.html On Jun 9, 6:26 am, Joshua Balogun joshua.balogu...@gmail.com wrote: Hi, I'm excited about trying out java google app engine. My tutorials has been going fine while running on eclipse; but i keep

Re: Dev plugin for firefox 3.7

2010-06-14 Thread Jim Douglas
Firefox 3.7 is the nightly (Minefield) build; is it possible to switch back to the current released version (3.6.3)? On Jun 14, 1:18 pm, Alan Chaney a...@mechnicality.com wrote: When I try to install the dev plugin on my Ubuntu 10.04 x64 system I get: No suitable plugins were found Seems to

Re: New book, ESSENTIAL GWT

2010-06-16 Thread Jim Douglas
Frederic -- You can find summary information on Amazon: http://www.amazon.com/gp/product/product-description/0321705149 And you can read chapter 1 here: http://my.safaribooksonline.com/9780321705631 On Jun 16, 12:31 pm, Frederic Conrotte frederic.conro...@gmail.com wrote: Can you summarize

Re: Million access to GWT Appl ??

2010-06-21 Thread Jim Douglas
References, please? The most charitable interpretation of this is that someone is misinformed. On Jun 19, 7:44 pm, manish kumar manish.online2...@gmail.com wrote: Hi, i have gone through many articles on web and found that GWT is not good for an application that has million users access

Re: GXT DateField issue

2010-06-21 Thread Jim Douglas
Have you asked on the GXT forums, Luiz? http://www.sencha.com/products/gwt/ On Jun 21, 1:32 pm, Luiz Gustavo Arruda gu.e...@gmail.com wrote: My GXT DateField needs 3 clicks to trigger DatePicker on Internet Explorer 8. Does any one know why? Best regards. -- You received this message

Re: Button look and feel

2010-06-25 Thread Jim Douglas
Chris -- PushButton is a styled DIV, but Button is a standard HTML button object. You want to use Button, and override the default gwt-Button style. http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/user/client/ui/Button.html On Jun 25, 3:50 am, Takapa tak...@gmail.com

Re: Button look and feel

2010-06-26 Thread Jim Douglas
, unless using important rules. You should stick to writing your own CSS style and assigning it via setStyleName(...). Greetings, Andreas On 25 Jun., 23:14, Jim Douglas jdoug...@basis.com wrote: Chris -- PushButton is a styled DIV, but Button is a standard HTML button object

Re: Button look and feel

2010-06-26 Thread Jim Douglas
subclass? You can simply call setStylePrimaryName on an instance of Button, no need for a subclass to just change the style. On 27 Jun., 00:58, Jim Douglas jdoug...@basis.com wrote: Apparently I created a cascade of confusion here.  When I said override the default gwt-Button style, I

Re: BigDecimal - Can you add it to 2.1 version

2010-06-28 Thread Jim Douglas
http://code.google.com/p/google-web-toolkit/issues/detail?id=1857 http://code.google.com/p/google-web-toolkit/issues/detail?id=4685 On Jun 28, 5:39 am, Dor dor...@gmail.com wrote: Hi All, I am responsible on innovative financial platform which is based on GWT. One of our problems is the

Re: Right Click on Tree

2010-07-01 Thread Jim Douglas
I listen for the right-click event on the Tree, then do a hit test of the point to identify the corresponding TreeItem. And don't forget to call preventDefault() on the event to suppress the browser's default context menu. (That last part works in Opera 10.5x, but Opera 10.10 ignores it and puts

Re: Right Click on Tree

2010-07-01 Thread Jim Douglas
... } } On Jul 1, 9:25 am, Yaakov yaakov.chai...@gmail.com wrote: How do you accomplish the hit test, if you don't mind sharing that part. Thanks, Yaakov. On Jul 1, 11:52 am, Jim Douglas jdoug...@basis.com wrote: I listen for the right-click event on the Tree, then do a hit test

iOS (iPhone/iPad) breaks the GWT spinner

2010-07-05 Thread Jim Douglas
This isn't strictly a GWT question; it affects any JavaScript application deployed to iOS. Any time the user touches an image for a second or so, a popup menu appears with the options Save Image and Copy. This is just a nuisance with simple button images, but it completely breaks the GWT

Re: iOS (iPhone/iPad) breaks the GWT spinner

2010-07-05 Thread Jim Douglas
be intercepted by iOS to drag the entire screen. On Jul 5, 8:56 am, Jim Douglas jdoug...@basis.com wrote: This isn't strictly a GWT question; it affects any JavaScript application deployed to iOS.  Any time the user touches an image for a second or so, a popup menu appears with the options Save Image

Re: Another feature for 2.1

2010-07-07 Thread Jim Douglas
It always annoys me when I post a how do I do X? question, and the answer is why would you want to do X?, but in this case I really am confused. GWT is a development tool for generating static JavaScript applications; what are you hoping to accomplish with the Java reflection APIs? On Jul 7,

Re: When GWT 2.1 will be released?

2010-07-14 Thread Jim Douglas
http://groups.google.com/group/google-web-toolkit-contributors/browse_thread/thread/e7152aeeec9457e1# On Jul 14, 6:05 am, Thamizharasu S zaru...@gmail.com wrote: Hi, What is planned release for GWT 2.1? - Thamizharasu S -- You received this message because you are subscribed to the

Re: Getting individual values from datebox in GWT.

2010-07-14 Thread Jim Douglas
Just a few observations, Chirayu: (1) The answer to your question is easily found from a quick review of the documentation: http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/user/datepicker/client/DateBox.html (2) If this was your first posting to this forum, it did not

Re: Intercepting a paste from the clipboard

2010-07-22 Thread Jim Douglas
You can't do this in any reliable cross-browser way. The following code works only in IE and WebKit. It fails in Firefox because there's no reliable way to retrieve the pasted text in Firefox (there are unreliable ways involving the Mozilla security manager). It fails in Opera and Mobile Safari

Re: What changed in 2.0?

2010-07-26 Thread Jim Douglas
This is a high level overview, but it's a starting point: http://googlewebtoolkit.blogspot.com/2009/12/introducing-google-web-toolkit-20-now.html http://en.wikipedia.org/wiki/Google_Web_Toolkit#GWT_2.0 On Jul 26, 9:45 am, Greg Dougherty dougherty.greg...@mayo.edu wrote: It's really interesting

Re: GWT Distrubted Compiler Project

2010-07-27 Thread Jim Douglas
You might be interested in these references, Dobes: http://code.google.com/p/google-web-toolkit/wiki/DistributedBuilds http://development.lombardi.com/?p=993 http://development.lombardi.com/?p=1027 On Jul 27, 3:17 pm, Dobes dob...@gmail.com wrote: The google code project for this is

Re: Generate Random String

2010-08-16 Thread Jim Douglas
I did this google search: http://www.google.com/search?q=java+generate+random+alphanumeric+string That returns more suggestions that you could possibly need; take your pick. The first link returned from that search has several suggestions:

Re: plans for ARIA in GWT

2010-08-17 Thread Jim Douglas
My guess is the GWT team is fairly small, and not many people are screaming for full ARIA support. If this was a critical feature to me, I'd probably start by reviewing the open issues for ARIA or ACCESSIBILITY: http://code.google.com/p/google-web-toolkit/issues/list?q=ARIA

Re: Resizable Text Area

2010-08-18 Thread Jim Douglas
That function is controlled by the CSS resize property: http://www.css3.info/preview/resize/ On Aug 16, 7:28 pm, Constantin Tanno constantin.ta...@gmail.com wrote: Does anyone know how to create a resizable text area in GWT?  This would be a text area that has gripper bars somewhere (ideally

Re: customized ScrollPanel to work on Iphone

2010-08-18 Thread Jim Douglas
You know that you use two fingers to scroll a div in iOS? http://www.google.com/search?q=iphone+scroll+div On Aug 18, 8:01 am, asianCoolz second.co...@gmail.com wrote: have anyone customized ScrollPanel class to make it support for Iphone? -- You received this message because you are

Re: Android app inventor

2010-08-20 Thread Jim Douglas
There's a long discussion about it here, starting @ 24:30: http://www.javaposse.com/java_posse_315_newscast_for_july_16th_2010 On Aug 20, 9:03 am, Gal Dolber gal.dol...@gmail.com wrote: Hi, I just got my android app inventor invitation... and you know what? it is completely made with gwt! :D

Re: Android app inventor

2010-08-20 Thread Jim Douglas
http://groups.google.com/group/javaposse/browse_thread/thread/f9091fa860bec8a9# On Aug 20, 10:19 am, Jeff Chimene jchim...@gmail.com wrote: On Fri, Aug 20, 2010 at 9:17 AM, Jim Douglas jdoug...@basis.com wrote: There's a long discussion about it here, starting @ 24:30: http

Re: Docs for 2.0

2010-08-30 Thread Jim Douglas
http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/index.html http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/index.html On Aug 30, 7:06 am, John nesre...@gmail.com wrote: Where can I find the Google Web Toolkit API Reference for 2.0 Thanks. John -- You received this message

Re: Docs for 2.0

2010-08-30 Thread Jim Douglas
I think you missed that I posted links for both 2.0 and 2.1. On Aug 30, 11:46 am, John nesre...@gmail.com wrote: On Mon, Aug 30, 2010 at 2:29 PM, Jim Douglas jdoug...@basis.com wrote: http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/index.html http://google-web-toolkit.googlecode.com

Re: GWT 508 Compliance

2010-09-03 Thread Jim Douglas
http://code.google.com/webtoolkit/doc/latest/DevGuideA11y.html On Sep 2, 5:19 pm, Google Integrator jimmyra...@gmail.com wrote: How would I make my GWT application 508 Compliant?  What are the best strategies currently out there for this.  I am writing an application that makes a lot of calls

Re: Getting intelligent behavior out of DateBox

2010-09-06 Thread Jim Douglas
In a standard DateBox, the DatePicker is automatically visible when the DateBox gets focus. To change the parsing rules for dates typed by the user, you'll want to write a custom date parser. The basic approach is to subclass DateBox and do this: setFormat(new CustomDateFormat(getFormat());

Re: Any metrices on amount of code/data we can put on client side (browser)

2010-09-16 Thread Jim Douglas
You'll probably need to test it and see. FWIW, Android doesn't seem to like very large html files. When I did a 'detailed' build of our GWT project (10+MB html files, compared to 1+MB obfuscated), it crashed the browser in the Android emulator. On Sep 16, 9:59 am, lalit lalit.bh...@gmail.com

Re: The Character class

2010-09-19 Thread Jim Douglas
Here's the documentation for Java library classes emulated in the GWT client: http://code.google.com/webtoolkit/doc/latest/RefJreEmulation.html You can browse the source code here: http://www.google.com/codesearch/p?hl=en#A1edwVHBClQ/user/super/com/google/gwt/emul/java/lang/Character.java If

Re: GWT encoding problem

2010-09-22 Thread Jim Douglas
Don't think in terms of encoding individual characters, just save the file in UTF-8 format from any text editor that allows you to select the character set. But, FWIW, é is U+00E9 (C3A9 in UTF-8). On Sep 21, 11:37 pm, Thomas Van Driessche thomas.van.driessch...@gmail.com wrote: Then how do i

Re: SliderBar has yellow border after clicking

2010-09-30 Thread Jim Douglas
That's the focus rectangle. Try adding these: slider.getElement().getStyle().setProperty(outline, none); slider.getElement().setPropertyBoolean(hideFocus, true); And if you're targeting iOS, you'll probably want these as well:

Re: text widget for highly customized data entry?

2010-10-03 Thread Jim Douglas
Try it like this: textArea.getElement().setPropertyBoolean(spellcheck, false); On Oct 3, 9:07 am, KaffeineComa kaffeinec...@gmail.com wrote: I'm trying to implement a kind of guided typing widget for data entry, in which the user's text entry is highly controlled and filtered. When the user

Re: TOOLTIPS FOR HEADER GRID !!!

2010-10-07 Thread Jim Douglas
You're referring to this Swing configuration class: http://download.oracle.com/javase/6/docs/api/javax/swing/ToolTipManager.html There is no equivalent to that in GWT or in JavaScript. This is how you set a tooltip in GWT:

Re: Hook up HTML with GWT

2010-10-11 Thread Jim Douglas
Or look at this: http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/user/client/ui/HTMLPanel.html On Oct 11, 10:20 am, Jeff Chimene jchim...@gmail.com wrote: On 10/11/2010 09:30 AM, Il Lupo wrote: I have been searching around for this with no luck so I decided to

Re: GWT 2.0 + Mac OS X Leopard + Eclipse 3.5.1 + Java 6: NSConditionLock unlock error messages?

2009-12-18 Thread Jim Douglas
Which files did you edit? On Dec 17, 11:59 am, Madprof kickingve...@gmail.com wrote: FWIW, I get the same behavior.  I did a quick fix by editing the .launch and build.xml files so that .XstartOnFirstThread were suppressed. OTOH, I'm kinda freaked out by this; would like assurance that this

Re: Is this a CSS problem?

2009-12-18 Thread Jim Douglas
This won't help with IE6, but you might want to test in IE8 standards mode (as opposed to quirks mode). On Dec 18, 7:04 am, David C. Hicks dhi...@i-hicks.org wrote: I have a set of forms that look great in Firefox, but in IE (6, 7, and 8) I'm seeing several formatting type problems.  Fonts seem

Re: GWT 2.0 + Mac OS X Leopard + Eclipse 3.5.1 + Java 6: NSConditionLock unlock error messages?

2009-12-18 Thread Jim Douglas
On Fri, Dec 18, 2009 at 2:40 PM, Jim Douglas jdoug...@basis.com wrote: Hi Rajeev, Apple doesn't really give you a lot of choice about the JVM; you basically get what they give you. :-) The current version of Java 6 is: $ /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0

Re: Need some suggestions

2009-12-19 Thread Jim Douglas
Abdullah, You want to read about GWT 2.0 code splitting: http://code.google.com/webtoolkit/doc/latest/DevGuideCodeSplitting.html On Dec 19, 7:30 am, Abdullah Shaikh abdullah.shaik...@gmail.com wrote: Hi All, I am new to GWT, I tried creating UI, Form and communicating with server .. all is

Re: GWT 2.0 + Mac OS X Leopard + Eclipse 3.5.1 + Java 6: NSConditionLock unlock error messages?

2009-12-21 Thread Jim Douglas
, Dec 18, 2009 at 6:36 PM, Jim Douglas jdoug...@basis.com wrote: -XstartOnFirstThread IS added the command-line, but that is intentional Ahh, that's useful information!  Would it be possible to make that a configurable option? I just generated the trivial Web Application Starter Project

Re: GWT 1.7.1

2009-12-21 Thread Jim Douglas
. Please suggest, am I missing something while adding classes from third party jar? Regards, amicool On Dec 22, 8:52 am, Jim Douglas jdoug...@basis.com wrote: I think Jeff Chimene already answered this question for you: http://groups.google.com/group/google-web-toolkit/browse_thread/threa

Re: Why doesn't ListBox ChangeHandler handle inserts?

2009-12-21 Thread Jim Douglas
The ListBox ChangeEvent tells you that the user changed the selected index. It's not fired when you change the selected index programmatically, and it's not fired when you change the contents of the list. It's assumed that the programmer knows when he did something to modify the list, so it's up

Re: Window formatting - Firefox vs. IE

2009-12-23 Thread Jim Douglas
David, The selection of quirks mode versus standards mode is the biggest factor I've noticed in the overall behaviour in IE8. (I haven't tested in IE6 or IE7.) The quickest way to see if that's the issue is to hit F12 and try the three different document modes. If your stuff works in standards

Scroll a TextArea to make the current selection visible?

2009-12-24 Thread Jim Douglas
When I call TextArea.setSelectionRange(pos,length), I'd like the TextArea to scroll if necessary so that the selected block of text is visible. This seems like it would be a pretty common requirement, but I'm struggling to find a complete solution. I've got good solutions for the two most common

Re: Port number

2009-12-29 Thread Jim Douglas
http://code.google.com/eclipse/docs/running_and_debugging_2_0.html On Dec 29, 10:36 am, Pion onlee2...@gmail.com wrote: I am using GWT 2.0 on Eclipse. I gives me the following when I run it:  http://localhost:/Test01.html?gwt.codesvr=192.168.120.1:9997 Where is the port number

Re: GWT button

2009-12-30 Thread Jim Douglas
Muhannad, If you just want the browser's default button style, you can try this: http://code.google.com/p/google-web-toolkit/issues/detail?id=4400 Button button = new Button(); button.removeStyleName(gwt-Button); On Dec 30, 1:02 am, muhannad nasser muhannadna...@gmail.com wrote: Dear all;

Re: IE 6 specific layout problems for DockLayoutPanel

2009-12-30 Thread Jim Douglas
Does IE6 support standards mode properly? I just used DockLayoutPanel for the first time today; I noticed this warning: http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/user/client/ui/DockLayoutPanel.html This widget will only work in standards mode, which requires that

Re: Where can we find color values used in GWT themes?

2010-01-04 Thread Jim Douglas
If you're using the default theme, you'll want to look at standard.css: http://google-web-toolkit.googlecode.com/svn/trunk/user/src/com/google/gwt/user/theme/standard/public/gwt/standard/standard.css On Jan 4, 6:52 pm, markww mar...@gmail.com wrote: Hi, Where can we find the colors used in

Re: GWT opportunity in Denver area with Fortune 10 client

2010-01-11 Thread Jim Douglas
I didn't see this as spam. To be honest, I didn't notice it at all until Peter's response drew attention to it. I don't have a problem with an occasional posting looking for a GWT developer. I would have a problem if an employment agency spammed the list daily with job postings. On Jan 11,

Re: GWT Incubator Status Update and Schedule

2010-01-12 Thread Jim Douglas
It's great to see that there's a road map for migrating those widgets to the trunk! We can use most of those features now (in particular: Validation, Slider, ProgressBar, Graphics, and Locale selection). Can we still expect to see a 2.0-compatible version of the current gwt- incubator.jar? On

Re: Hoste mode issue on OS X

2010-01-17 Thread Jim Douglas
Francisco, Do you have any Swing components in your app, Francisco? Does it run at all in DevMode (OOPHM)? I have what looks like the same problem here, but my app basically works; the effects are limited to those annoying NSConditionLock error messages, and some Swing components that we use

Re: DatePicker disabling specified dates

2010-01-20 Thread Jim Douglas
If you're using a DateBox, you can define a custom Format with your own parsing rules with: setFormat(new CustomDateFormat(DateTimeFormat.getFormat (pattern)));

Re: Datepicker and week numbers

2010-01-20 Thread Jim Douglas
I'd add a note to this related GWT issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=4009 On Jan 20, 9:24 am, P.G.Taboada pgtabo...@googlemail.com wrote: Hi, no official statement on this regard? brgds, Papick On 25 Nov. 2009, 22:04, P.G.Taboada

Re: FireFox 3.6 Can't Debug Anymore :(

2010-01-21 Thread Jim Douglas
When you clicked Get the New Version, it should have taken you to a dialogue that says Incompatible Add-ons Found. I'm seeing a dialogue that says: Some of your add-ons won't work with Firefox 3.6, and will be disabled. As soon as they are made compatible, Firefox will update and re-enable

Re: Google Web Toolkit Developer Plugin on Firefox 3.6

2010-01-21 Thread Jim Douglas
I'm sure it's a high priority. You can click on the little star on this page to register your interest and get added to the email notification list when it's resolved: http://code.google.com/p/google-web-toolkit/issues/detail?id=4380 On Jan 21, 7:21 pm, Pion onlee2...@gmail.com wrote: I was

Re: GWT Incubator update for GWT 2.0?

2010-01-26 Thread Jim Douglas
It looks like they snuck in an update when nobody was looking. :-) http://code.google.com/p/google-web-toolkit-incubator/wiki/Downloads On Jan 26, 9:36 am, WiseBoggz arseny.bogomo...@gmail.com wrote: Chris, is there an (approximate) timeframe for when you guys are planning to release the

Re: How to customize DecimalFormat?

2010-01-31 Thread Jim Douglas
I think you meant to say getCurrencyFormat(). You'll want to read these pages: http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/i18n/client/NumberFormat.html http://code.google.com/webtoolkit/doc/latest/DevGuideI18nLocale.html And play with this sample:

Re: Debugging IP address

2010-02-06 Thread Jim Douglas
Refer to the release notes: http://code.google.com/webtoolkit/release-notes.html#Release_Notes_Current Potentially breaking changes and fixes The development mode server will, by default, only bind to localhost which will break cross-machine debugging. You can get the old behavior by specifying

Re: copypaste and TextBox

2010-02-10 Thread Jim Douglas
Try it like this: package test.client; import com.google.gwt.core.client.EntryPoint; import com.google.gwt.core.client.GWT; import com.google.gwt.user.client.Event; import com.google.gwt.user.client.ui.Button; import com.google.gwt.user.client.ui.RootPanel; import

Re: copypaste and TextBox

2010-02-10 Thread Jim Douglas
nameField.sinkEvents(Event.ONPASTE); On Feb 10, 1:21 pm, Seven Reeds seven.re...@gmail.com wrote: My understanding is faulty. The final keword gave me grief so I moved the button and textbox definitions outside.  I am only seeing change BrowserEvents being triggered.  I am using GWT

  1   2   3   4   5   >