Re: select language or country from a drop down list

2011-10-12 Thread Alan Chaney
is not supported by GWT. But it seems I can't do anything simpler than what you suggest. HTH Alan -- 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: GWT Developer Plugin for Firefox 7

2011-10-10 Thread Alan Leung
Thanks for the info. That is pretty weird.I can't think of any reason why that would happen Let me try rebuilding... On Mon, Oct 10, 2011 at 4:16 AM, JB jul.bram...@gmail.com wrote: I manually rebuilt from SVN and that worked. I on Gentoo Linux 32bits (built plugin attached). -- You

Re: GWT Developer Plugin for Firefox 7

2011-10-07 Thread Alan Leung
Yes. I checked it in last night and tested it on all the OS. Let me know if you have any problems with it. On Fri, Oct 7, 2011 at 11:51 AM, Thomas Broyer t.bro...@gmail.com wrote: It's available on the GWT SVN; just a matter of time 'til it makes it to an official release with the auto-update

Re: [gwt-contrib] Re: More control over split point fragments

2011-10-07 Thread Alan Leung
your.class.clone.A to be used in Y only. Now both should not be in your leftover. Depending on your app, this might or might not be easy to do thought. -Alan -- http://groups.google.com/**group/Google-Web-Toolkit-**Contributorshttp://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Re: More control over split point fragments

2011-10-05 Thread Alan Leung
weeks back. While I do believe it is beneficial to leftover code size, when I bought it up with some of the internal projects, they believe the cache-ability lost with multiple leftover fragments is not something they'd trade off. That's why I went down the fragment merging route. -Alan On Wed

Firefox Made Me Sad

2011-10-03 Thread Alan Chaney
it to Mozilla. Regards Alan -- 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...@googlegroups.com

Re: Firefox v. Dev Plugin

2011-10-03 Thread Alan Leung
What would be involved in automating the plugin build process? Are we talking Maven + Ant + shell scripting? Although they were usually minor, there are definitely changes in each release. I am trying to create scripts here and there but in reality, it is very hard automatic upstream API

Re: GWT Developer Plugin for Firefox 6

2011-09-22 Thread Alan Leung
The missing plugin page is also updated. -Alan On Wed, Sep 21, 2011 at 7:13 AM, ialpert ialp...@gmail.com wrote: looks like it's been updated On Sep 9, 11:33 am, Jim Douglas jdou...@basis.com wrote: Any progress on the Firefox 6 plugin? This page still reports that the highest supported

Re: GWT Developer Plugin for Firefox 6

2011-09-13 Thread Alan Leung
FYI: I have pushed the xpi out: https://dl.google.com/dl/gwt/plugins/firefox/1.0.10582/gwt-dev-plugin.xpi Once I finish testing it with all the browser once more I'll make that the default for the missing plugin page. -Alan On Tue, Sep 13, 2011 at 10:17 AM, snayrb99 bryan...@comcast.net wrote

Re: GWT Developer Plugin for Firefox 6

2011-08-30 Thread Alan Leung
FWIW, I just checked in xpi file. If you feel adventurous, you can fetch it from the SVN and install it. Please let me know if you have any issues. I plan to put it on the auto download page later this week. I apologize for the delay. -Alan -- You received this message because you

Re: GWT Project Backup

2011-08-04 Thread Alan Chaney
Another option is to right-click the project in the package explorer, select Export... and then Archive File and create a zip or tar.gz backup. This gives you a project archive which can be imported into another workspace. Its likely to be much quicker than copying the whole workspace. Alan

Re: Stop further execution till rpc completes

2011-08-01 Thread Alan Chaney
How about: if (!RootPanel.get(id).contains(widget)) { RootPanel.get(id).add(widget); Because of the nature of javascript and web browsers the above call is inherently thread safe. HTH Alan On 8/1/2011 9:23 AM, Deepak Singh wrote: I am making 2 seperate RPC calls. Whichever

Re: Stop further execution till rpc completes

2011-08-01 Thread Alan Chaney
isn't in the widget list. You can derive your own 'contains' logic from the above. Its purely a matter of style, but I'd personally prefer to avoid having extra state flags to manipulate and would rather use state that's already in the data of the object in question. Alan On 8/1/2011 11:51

Re: math error: modulo

2011-07-15 Thread Alan Chaney
What other languages? In Java '%' in this case means the remainder of the remainder of dividing -1 by 12 is -1, as is -13 %12 or -25 % 12. I'd be interested to know which other language does what you say. HTH Alan On 7/15/2011 3:07 PM, seven.reeds wrote: int x = 0; int y = -1; x = y

Re: UIBinder issue

2011-06-22 Thread Alan Chaney
id='ws'/div my:E / my:D / /div /htmlpanel HTH Alan On 6/22/2011 1:58 PM, Deepak Singh wrote: Hi, I have one UIBinder ABC.ui.xml. htmlpanel div id='main' div id='ws'/div div id='we'/div div id='wd'/div /div /htmlpanel Now i break this into 2 other uibinders named D.ui.xml htmlpanel div id

Re: UIBinder issue

2011-06-22 Thread Alan Chaney
and did you really mean htmlpanel? probably should be g:HTMLPanel... Alan On 6/22/2011 1:58 PM, Deepak Singh wrote: Hi, I have one UIBinder ABC.ui.xml. htmlpanel div id='main' div id='ws'/div div id='we'/div div id='wd'/div /div /htmlpanel Now i break this into 2 other uibinders named

GWT and CORS with file uploads

2011-06-21 Thread Alan Chaney
? If so, can they point me to/share with me the code that they used? Thanks in advance Alan -- 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

help with ant file

2011-06-20 Thread alan
packages: com.mycompany.myapp.fe.client com.mycompany.myapp.fe.server com.mycompany.myapp.fe.shared and my EntryPoint class is com.mycompany.myapp.fe.client.fe [alan@host01] pwd /home/alan/workspace/myapp/frontend [amiller@host01] find ./war -name '*.xml' -exec ls -lgo

Re: GWT plugin compile can not ignore a source directory

2011-06-06 Thread Alan Chaney
case. HTH Alan I have a separate source folder in eclipse where I put my unit tests. These unit tests are put in the same package so that I can gain access to package private classes. These classes do not need to be GWT compiled, it slows down the compilation and they cause many errors

Re: eclipse GWT plugin jetty server problem

2011-05-26 Thread Alan Chaney
Try running: ps alx | grep java and carefully check that the jetty server has shut down properly. Sometimes a bug can stop the server shutting down, and thus the port appears to be still in use when you try and start another instance. HTH Alan On 5/26/2011 2:09 PM, othman wrote

Re: GWT Designer also compiles test and shared classes

2011-05-19 Thread Alan Chaney
and it makes no difference. I said in an earlier message that I will submit a test case - I'll try and do that in the next couple of days. Alan On 5/19/2011 4:42 AM, Baloe wrote: Hi all, Thanks for the hints. I understand that GWT Designer doesn't compile anything, but it calls GWT to perform

Javadoc 'latest'

2011-05-17 Thread Alan Chaney
Sorry if this has already been asked, but the 'latest' links to 2.2 at the moment. The trunk appears to have 2.3.0 RC1 - are there plans to make 2.3 final and the target of 'latest'? Thanks Alan -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: GWT Designer also compiles test and shared classes

2011-05-17 Thread Alan Chaney
to things like org.junit.Assert etc. I asked if this was a known bug, and it seems that its not, so maybe I should report it? Alan /dmc On Tue, May 17, 2011 at 1:34 PM, Baloe nielsba...@gmail.com mailto:nielsba...@gmail.com wrote: Hi all, Is there any way to restrict GWT

Re: GWT Designer also compiles test and shared classes

2011-05-17 Thread Alan Chaney
://code.google.com/webtoolkit/tools/gwtdesigner/preferences/gwt/preferences_builder.html Sadly, I'm seeing this problem with Designer, and there doesn't seem to be such an option. The implication here is that I need to install the full Window Builder to be able to get around this problem? Alan

Re: Re : Re: Javadoc 'latest'

2011-05-17 Thread Alan Chaney
javadocs, although there does seem to be a 2.3.0.rc1 available. I was just enquiring as to when the javadocs were going to updated to match the current release. Alan On 5/17/2011 1:08 PM, Thomas Broyer wrote: David, he talks about http://google-web-toolkit.googlecode.com/svn/javadoc/latest

Re: GWT/Tomcat and java.lang.NoClassDefFoundError!

2011-05-13 Thread Alan Chaney
environment variable or simply copy it to your lib folder. I'd be interested if you have any specific reason for directly using the org.apache.catalina classes - that will tie your application to a specific release of Tomcat, and that's really not a very good idea. Alan HTH On 5/12/2011 11:30

WindowBuilder problems

2011-05-13 Thread Alan Chaney
returns, and I have to terminate eclipse and start over. I've looked around for comments on these points and found nothing useful. If somebody has any input on them I'd be very grateful - otherwise I'll report them as bugs - (where?) Thanks In Advance Alan -- You received this message

Re: GWT 2.3 Upgrade breaks hibernate queries?

2011-05-11 Thread Alan Chaney
that the actual problem was caused by the annotation scan in hibernate determining that the validator API was being used and hibernate not being able to find a default annotation provider - which is pretty much what Trevor says below. Regards Alan On 5/11/2011 8:07 AM, Trevor Skaife wrote: My guess

Re: Configuring a GWT application in both hosted mode and Tomcat

2011-05-05 Thread Alan Chaney
for linux permissions. HTH Regards Alan I am sure I am not the first one that needs to configure a GWT application. How do the experts do this? -- Alan Chaney CTO and Founder, Mechnicality, Inc. www.mechnicality.com -- You received this message because you are subscribed to the Google

Re: Grid + UiBinder : Setting row level styles

2011-05-03 Thread Alan Chaney
Where are the styles defined? For example, if they are defined in the actual ui.xml file then shouldn't they be somthing like: addStyleNames={style.OddNumberRow} etc? Regards Alan On 5/3/2011 9:25 AM, karthik reddy wrote: ... . g:row addStyleNames=OddNumberRow

Re: Problems with Godaddy hosting and server-side deserialization

2011-05-02 Thread Alan Chaney
Joe On 5/2/2011 3:26 PM, Joe D. wrote: Alan, Do you have suggestions for hosting providers that you are happy with. I'm so sick of NoDaddy and trying to fit a square peg (eg GWT) into a round hole (eg CrapDaddy). *Webhostingjava.net *looks interesting. I've used what was thePlanet but has now

Re: can I send something like upload finished answere from HTTP servlet to my application ?

2011-04-29 Thread Alan Chaney
-toolkit.googlecode.com/svn/javadoc/2.2/index.html Regards Alan On 4/28/2011 10:50 PM, Manvel Saroyan wrote: Hi please tell me can I send something like upload finished answere from HTTP servlet to my application ? I want to create a loader when user upload the file and hide that uploader

Re: Trying to send image to server

2011-04-29 Thread Alan Chaney
is also available to the server C/P HTH Alan On 4/29/2011 6:25 AM, Patssay wrote: Hi, I am trying to send an image from client to server. I have used ImageResources on client side to load images. but now i want to send the image to server side and send mail from the server side? I tried

Re: Trying to send image to server

2011-04-29 Thread Alan Chaney
, you should check that the *client* and *shared* .class files are present under WEB-INF/war/classes folder. HTH Alan Actually I am trying to implement the functionality of sending email from my gwt application. I have the functionality up and running on the server. All it needs is the email

Controlled shutdown of dev mode in Eclipse

2011-04-29 Thread Alan Chaney
event. TIA Alan -- 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...@googlegroups.com

Re: Loading thumbnails of images as links in gwt

2011-04-27 Thread Alan Chaney
I don't believe that's the full stack trace. A bit further down the screen it will probably give you a hint as to what happened. Alan On 4/27/2011 6:22 AM, Patssay wrote: Hi, Well, on clicking the image reload the page with different widgets. I tried using the Clickhandler for the image

Re: Warning while loading images from local machine

2011-04-26 Thread Alan Chaney
HTH Alan On 4/26/2011 3:29 PM, Patssay wrote: Why do I get this message when I am trying to load images from local machine in my GWT application? [WARN] 404 - GET /Images%5Cbirthday1.jpg (127.0.0.1) 1408 bytes Request headers Host: 127.0.0.1: User-Agent: Mozilla/5.0

Re: Problems with Godaddy hosting and server-side deserialization

2011-04-22 Thread Alan Chaney
suspect they may have a standard security manager that they use. As a matter of interest I use tomcat regularly on other hosting providers and have no problems. HTH Alan On 4/22/2011 7:51 AM, Andrew Calleja wrote: Unfortunately the appengine doesn't cater for my needs as the 3000 files limit

Re: Webapp runs in development mode perfectly but fails on test server

2011-04-14 Thread Alan Chaney
for you as long as they are on the classpath. However, you should check that all the required jars are actually present in the final war. HTH Alan On 4/13/2011 2:01 PM, Rob Tanner wrote: Hi, My webapp runs perfectly in development mode, but when I build the WAR file and move onto a test server

Re: HTML5 Offline apps future support?

2011-04-01 Thread Alan Chaney
is that Webkit local database support doesn't actually seem to be supported in the mainstream browsers. Regards Alan -- 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

Re: View-Presenter Interaction Patterns in Google Web Toolkit (GWT)

2011-03-01 Thread Alan Chaney
Good article. Thanks. Alan On 3/1/2011 7:38 AM, Geoffrey Wiseman wrote: If you're using Model-View-Presenter with GWT (or you're thinking about it), there are a number of different patterns you can use to co- ordinate between your view and the corresponding presenter. Ray Ryan's Best

Re: Problems with Firefox 4B12 in dev mode.

2011-02-28 Thread Alan Chaney
Hi Chris Do you want me to file a bug report? I haven't had a chance to test it on more than one platform (win7/x86_64)/GWT2.1.1 but its likely that I could test it with Vista X86_64/GWT.2.2 this afternoon PST. Alan On 2/28/2011 8:28 AM, Chris Conroy wrote: Alan, Thanks for the bug

Problems with Firefox 4B12 in dev mode.

2011-02-27 Thread Alan Chaney
but it still works fine in Chrome 11.0.672.2. It also works fine with FFB12 in production mode. Sigh... I suppose this is yet another 'upstream' issue with Mozilla changing their plug-in API? If someone else can confirm this I'll report a bug. Regards Alan -- You received this message because you

Re: Spring GWT Integration

2011-02-24 Thread Alan Chaney
servlet. Works nicely. I can supply code if requested, but there are other projects out there. HTH Alan On 2/24/2011 11:48 AM, lascarayf wrote: Why GWT team do not make a OFFICIAL GWT SPRING INTEGRATION DOCUMENT?? -- Alan Chaney CTO and Founder, Mechnicality, Inc

Re: Where do I put the Tomcat Context.xml file?

2011-02-24 Thread Alan Chaney
war/META-INF/context.xml just create the dir and pop in the context.xml. You should check carefully the tomcat docs w.r.t context.xml - the spec. has changed a lot between different versions of tomcat. HTH Alan On 2/24/2011 1:44 PM, Greg Dougherty wrote: I'm starting to use JNDI with my

Re: Best hosting provider for GWT app

2011-02-23 Thread Alan Chaney
. price 2. SLA - surprising how difficult it is to get past 5/9's 3. Their response when things go wrong. I've found Softlayer to be Ok on 1 and very good on 3. I can't remember what their SLA is. YMMV Alan -- You received this message because you are subscribed to the Google Groups Google Web

Re: Server Push

2011-02-21 Thread Alan Chaney
wish to pursue this line of discussion its probably best to contact me off list. HTH Regards Alan The main program with will be running at the same time as whatever server we install on the same machine and will take care of servicing the other two or three PC104s each of which will control

Re: Getting Error when deploying on Tomcat

2011-02-20 Thread Alan Chaney
(or $JAVA_HOME)? Which port are you using? (by default, tomcat is 8080) Have you checked your firewall settings? Can you see the default tomcat home page? What context are you deploying your application to? ROOT? Regards Alan On 2/20/2011 9:23 AM, Ezequiel Palumbo wrote: Hello Noor, Well, do you

Re: customize gwt code server disconnected overlay page

2011-02-20 Thread Alan Chaney
/webtoolkit/doc/latest/DevGuideDeploying.html#DevGuideDeployingWebServer 2. any guide on how to customize this page message ? You can't - your users should never see this. Regards Alan -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group

Re: Server Push

2011-02-20 Thread Alan Chaney
with the simplest approach (polling), get that to work, and then consider some kind of 'push' technology. HTH Alan -- 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

Re: String Date to SQL Date

2011-02-04 Thread Alan Chaney
); SQLDate sqlD = new SQLDate(parsedDate.getTime()); Alan On 2/4/2011 9:14 AM, Ross McKinnon wrote: Hi, Does anyone have a tried and tested method of converting a string date (-mm-dd) into an SQL date to insert into a database. Every method I find online doesnt seem to work. Thanks, Ross

Re: Found an inconsistent behaviour in GWT Expenses Roo application: Master-Detail Activities-Places becoming out of Sync !

2011-01-31 Thread Alan Chaney
employees 750 - 800 (say). This means that the list must be capable of expanding both forwards and backwards (towards the 0th element) but I can't see any reason why thats not workable. Am I wrong? Thanks Alan -- You received this message because you are subscribed to the Google Groups

Re: Found an inconsistent behaviour in GWT Expenses Roo application: Master-Detail Activities-Places becoming out of Sync !

2011-01-31 Thread Alan Chaney
results. You only need to do this when moving backward, and obviously you can tweak the limit figures to display the info in whatever way you want. There may be other ways... Alan On 1/31/2011 2:36 PM, Thomas Broyer wrote: Oh, if you have a monotonically incremented ID, the list is sorted

Re: Deploying GWT App onto Tomcat

2011-01-29 Thread Alan Chaney
Alan Does anyone know how to resolve this issue, have you encountered this before? Thanks, Ross -- Alan Chaney CTO and Founder, Mechnicality, Inc. www.mechnicality.com -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: Cannot install gwt plugin in Eclipse with Windows 7 64-bit

2011-01-29 Thread Alan Chaney
that you have a 64 bit JVM and installing the 64 bit version. HTH Alan On 1/28/2011 11:22 PM, Kiarash wrote: I'm trying to install Eclipse plugin for GWT and follow the instructions step by step as following: - Download and install Eclipse 3.6 Helios - ChoosingHelpInstall new software... adding

Re: App Deployment

2011-01-27 Thread Alan Chaney
-based. A full month of rental for the smaller server is less than 100 bucks and that's 24x7 Alan On 1/27/2011 11:42 AM, Ross McKinnon wrote: Hi Ryan, Thanks for your reply. I will keep this in mind. As the App will only be used by a couple of people, i do not think its worth investing

Re: Persistent HTTP Connection

2011-01-27 Thread Alan Chaney
a configuration setting - it probably is in all the other app-servers (or at least it should be...) - an 'active' connection is one that actually has data travelling across it, in one direction or another. A modern, high capacity machine can support many more. HTH Alan On 1/27/2011 1:59 PM

Best way to get all InputElements within a div tag.

2010-08-06 Thread alan
I've got a web-page divided up into sections with div elements like: div id=some-section /div I'd like to create a method that can get all of the valid InputElements inside that div tag. I get the DivElement with a: Element parentDiv = DOM.getElementById(some-section).cast(); What is

Re: How to disable menu items?

2010-08-05 Thread Alan Hadsell
On Aug 4, 10:48 pm, Magnus alpineblas...@googlemail.com wrote: How is the mechanism when extending the standard styles? My experience is that own styles are overwritten by standard.css. Take a look at the menu sample app, contained in the gwtlib project.

Re: How to disable menu items?

2010-08-04 Thread Alan Hadsell
On Aug 4, 1:42 am, Magnus alpineblas...@googlemail.com wrote: It would be fine if someone could tell how this can be done. LMGTFY: http://code.google.com/p/gwtlib/source/browse/#svn/trunk/src/org/gwtlib/client/menu/ui Take a look at the gwtlib source code for the MenuBar and MenuItem

Re: How to disable menu items?

2010-08-01 Thread Alan Hadsell
On Aug 1, 12:25 pm, Magnus alpineblas...@googlemail.com wrote: Hi, I have a MenuBar with MenuItems, which I would like to selectively enable for defined user groups. But how can I enable/disable menu items? Take a look at gwtlib: http://code.google.com/p/gwtlib/. It has menubars and menu

Good File Upload Example

2010-07-30 Thread alan
I need to read a csv file from the hard drive to populate a table in a dialog box. This seems to require using the FileUpload class, but I've not found a good example of it is use. Could anyone recommend a complete example that could accomplish this. Thanks, -- You received this message

DeferredCommand. When should an RPC use it?

2010-07-16 Thread alan
I'm trying to understand when an RPC call should use a DeferredCommand, when is should include an addPause and when an RPC call should not use a DeferredCommand. I'm working on a case when I've got a widget that needs to load a dozen or so ListBoxes. Because of the service layer each one is a

Widget that extends ListBox loses the width attribute in the UiBinder ui.xml file.

2010-07-07 Thread alan
I've got a class which extends ListBox. public class ListBox extends com.google.gwt.user.client.ui.ListBox implements HasCaption, HasWidgets { ... } In a ui.xml file the width attribute, which works fine for : g:ListBox width=400px ui:field=searches / The width attribute works when this is a

Re: UiBinder - VerticalPanel not applicable for the argument SelectElement ...

2010-06-30 Thread alan
Thanks. Were is the best source of documentation on UiBinder tags. -- 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

UiBinder - VerticalPanel not applicable for the argument SelectElement ...

2010-06-29 Thread alan
Background: I'm using the UiBinder *.ui.xml files to create a modestly complex layout. I elected to use the DockPanel and VerticalPanel to put things into four columns. Within each Vertical Panel I started using table and tr tags, but found they were not compatible. It is now use g:cell and

Open File on client side.

2010-06-28 Thread alan
I would like to open a file on the client side, so it can populate a local (client-side) table. (After validating of course). The data is not needed on the server side. What is the best way to do this? It seems uploading the file to the server would be wasteful, but can you open the file on the

PopUpPanel above a DialogBox.

2010-06-25 Thread alan
to a specific web-site page is appreciated too. Alan --- minimal code snippet here -- public class ToolTip extends PopupPanel { public ToolTip(String message, int x, int y){ super(true); this.setPopupPosition(x, y); this.setAnimationEnabled(true); this.add(new Label(message

Re: Dev plugin for firefox 3.7

2010-06-15 Thread Alan Chaney
I'm developing a large WebGL application which is currently only supported by the nightly builds, so the answer to your question is, sadly, no :-) . I really, really want to be able to debug GWT in Firefox, so if necessary I'd be prepared to help with testing/building. Alan On 06/14/2010

Dev plugin for firefox 3.7

2010-06-14 Thread Alan Chaney
? TIA Alan -- 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: Maven is obfuscating and GWT2.1 should not depend on it

2010-06-06 Thread Alan Chaney
+1 Blessed Geek wrote: Maven is great when used as a more capable Ant, but sucks when used for everything else that it has been so far been used for (like attempting to create the Universe in 7 days). Maven as a build dependency and testing setup tool is not bad but the way it has been

Java array handling in JSNI

2010-05-26 Thread Alan Chaney
a; }; This seems to work in both hosted and production mode. Any suggestions as to a better way to do this would be appreciated. I think the documentation should be a little bit more explicit about this, I'd be happy to contribute. Regards Alan -- You received this message because you

Re: New to java: where do i put new classes?

2010-05-26 Thread Alan Chaney
and another significant learning curve to using GWT for client/server web applications. I suggest that you think carefully about the scope and requirements of your application before taking these 3 steps. Good luck! HTH Alan m wrote: Sorry, I'm a c# transplant. I want a create a class

Re: Java array handling in JSNI

2010-05-26 Thread Alan Chaney
in DevMode but just pass it as-is when compiled, so it has no overhead. http://code.google.com/p/gwt-in-the-air/ Will do. Sounds very useful. Regards Alan -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Problem with code which works in compiled mode and fails in hosted mode

2010-05-24 Thread Alan Chaney
Alan (exception trace is below) 17:11:06.785 [ERROR] [webgltest] Failed to create an instance of 'com.google.gwt.core.client.impl.SchedulerImpl' via deferred binding com.google.gwt.core.client.JavaScriptException: (String): invoke of @com.google.gwt.core.client.JavaScriptObject::createArray

GWT /Eclipse/Tomcat

2010-05-13 Thread Alan Chaney
. Alan -- 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: XML binding/mapping and GWT-RPC

2010-05-13 Thread Alan Chaney
missing something? If they are stored as XML on the server you only need to bind/unbind them once and that should be in the RPC mechanism . HTH Alan ciosbel wrote: I need to manage xml files (already written), so i thought that having them binded into serializable POJO's was a good choice

Re: Resource URL rewriting (e.g. cache.html)

2010-05-12 Thread Alan Chaney
and then go to the app itself. Alan When a ticket is going invalid, you have no way from the servlet to redirect to an other page. The request you get is a RPC without a visible page. The server may send the GWT-App a request to open an second window for doing authentication. This may work

gwt webgl smartgwt

2010-05-11 Thread Alan Chaney
suggestions welcome! Thanks! Alan -- 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: gwt webgl smartgwt

2010-05-11 Thread Alan Chaney
obviously the best solution. I've done as you asked and placed a small sample on the forum. Regards Alan ckendrick wrote: What layout issue on what browser with what code? This is not a known issue, so to get it addressed, post a test case to the SmartGWT forums: http://forums.smartclient.com

Re: Getting RichTextArea to resize

2010-05-07 Thread Alan Chaney
Hi Manolo Manuel Carrasco Moñino wrote: Setting the width to 100% should work Yes, it did. Embarrassingly obvious really. Thanks. Alan -Manolo On Thu, May 6, 2010 at 11:33 PM, Alan Chaney a...@mechnicality.com wrote: Hi I'm a complete newbie to GWT. I'm using GWT 2.0.1 I've

Re: Problems with StockWatcher

2010-04-08 Thread Alan Chaney
properties or configuration files which would seem to affect this behavior Regards Alan alanmechy wrote: I'm using Centos 5.3 X64 with the standard Firefox browser (3.0) and I can't get the gwt dev plugin to work. From reading various posts it seems likely that there is no support for Linux 64 bit

Re: Adding an Image/HTML to the MenuItem of a MenuBar

2010-02-22 Thread Alan Hadsell
On Feb 22, 9:13 am, Tapas Adhikary tapas4...@gmail.com wrote: Hi All, How to add an image or a html  to the menu item of a menu bar ? I have a menu bar (vertical) of 6 menu items. I would like to add a tick(ok/right) image in-front of the menu item on selection. With that , I want to hide

Re: Injecting Spring beans into GWT services

2010-01-18 Thread Alan Hadsell
-by-ya... Yaakov, Thanks so much for posting that. Very helpful. Alan Hadsell -- 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

Re: Should we use maven or not for a project?

2009-11-29 Thread Alan Hadsell
On Nov 28, 10:43 pm, John Armstrong siber...@gmail.com wrote: Since starting with GWT (coming from Wicket which assumes Maven) I have to say, I deeply miss Maven dependency management. My attempts to mavenize my GWT Designer projects have failed and I lack the time to debug and get things

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

2009-09-11 Thread Alan Hadsell
On Sep 11, 11:46 am, John V Denley johnvden...@googlemail.com wrote: I have been burnt several times over the last six months, both with commercial organisations and individuals who have promised the world and then simply not delivered. Hence I am very wary of getting involved with anyone

Re: Composite question

2009-05-22 Thread alan m
that some renegade terrorist has buried a setWidth() or DOM manipulation landmine somewhere in code where it doesn't belong IMHO... But it seems like what I want isn't easily possible. Thanks for your help. Alan On Thu, May 21, 2009 at 7:41 PM, Ian Bambury ianbamb...@gmail.com wrote: Sorry - I

Composite question

2009-05-21 Thread alan m
myWidget @Override? Thanks, Alan --~--~-~--~~~---~--~~ 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: Composite question

2009-05-21 Thread alan m
); } } On Thu, May 21, 2009 at 6:00 PM, Jeff Chimene jchim...@gmail.com wrote: On 05/21/2009 09:22 AM, alan m wrote: Hi, I see how Composite is useful in theory for custom widgets, to wrap rather than extend specific widgets  prevent exposing all their methods; but I have found that Composite itself

Re: Composite question

2009-05-21 Thread alan m
a composite with three labels, then you probably don't want (and it wouldn't be easy) to expose the setText method for all three. Ian http://examples.roughian.com 2009/5/21 alan m alan.jame...@gmail.com Hi, I see how Composite is useful in theory for custom widgets, to wrap rather than

Re: Composite question

2009-05-21 Thread alan m
is paramount. You mention that I could extend Widget rather than Composite? But Widget also extends UIObject... maybe I should just extend Object.. and write my own API/toolkit ;-) But I would be interested in hearing more on this. Regards, Alan On Thu, May 21, 2009 at 6:46 PM, Ian Bambury ianbamb

Re: GWT 1.6 with Maven and build system questions/survey...

2009-04-12 Thread Alan Hadsell
We were using Maven because that's what everyone uses, but found that it did not meet our needs. * It requires a great deal of configuration to properly build a GWT project * The tools to integrate Maven/GWT/Eclipse are always in a state of flux * Some of the really nice stuff in Maven

Re: HorizontalSplitPanel splitter image through CSS

2009-04-08 Thread alan m
, didn't know about that :) I'll have a look as soon as I get a chance and post back what I find. On Apr 7, 4:04 pm, alan m alan.jame...@gmail.com wrote: oh sorry, you need the firebug plugin for FF, or developer toolbar plugin, for IE or Chrome's built-in inspector; essential for front-end work

Re: CSS Style for single tabs of a TabBar

2009-04-08 Thread alan m
Sorry, Lord-67, but on a high volume list repeating a request without details or quote is, to me, just an empty email saying help. No offence. :-) If I understand correctly, if you can actually disable a TabBar, at the point you disable it you can also add.styleName(gwt-TabBarItem-disabled) or

Re: CSS Style for single tabs of a TabBar

2009-04-08 Thread alan m
We need help to help you :-) More details please - what was the issue; html css browser output? On Wed, Apr 8, 2009 at 7:37 AM, -Lord-67 -lord...@web.de wrote: No suggestions from anyone? Really could need some help here ... Greetings, -Lord-67

Re: HorizontalSplitPanel splitter image through CSS

2009-04-07 Thread alan m
the source in the browser, I only get the GWT html page with references to the JS files, so I don't know how to check that :/ On Apr 6, 3:14 pm, alan m alan.jame...@gmail.com wrote: the HorizontalSplitPanel html that gets served out to the browser, that you're trying to use your css on, of course

Re: HorizontalSplitPanel splitter image through CSS

2009-04-06 Thread alan m
What's the HTML for this? 2009/4/6 Miloš Ranđelović milos@gmail.com: Hi, What's the correct way of setting the image of the HorizontalSplitPanel splitter through CSS? I've tried several different methods, none worked. This is what I have currently: .gwt-HorizontalSplitPanel

Re: HorizontalSplitPanel splitter image through CSS

2009-04-06 Thread alan m
the HorizontalSplitPanel html that gets served out to the browser, that you're trying to use your css on, of course :-) 2009/4/6 Miloš Ranđelović milos@gmail.com: Hi, I'm not sure which HTML do you refer to... ? On Apr 6, 2:33 pm, alan m alan.jame...@gmail.com wrote: What's the HTML

Re: GWT and Accesebility

2009-04-06 Thread alan m
traditionally: script type=txt/javascript// if (javascript): do javascript here/script noscriptelse: put your static html here for no-script users/noscript but you could instead put the static html stuff in div id=gwtAttachPointhere/div so it either gets replaced by your gwt stuff, or is

Re: PopupPanel Align Right

2009-04-03 Thread alan m
, but that didn't fix it. Also, I am interested to know how to do this with html. Thanks On Apr 2, 10:09 am, alan m alan.jame...@gmail.com wrote: you could setStyleName(myCssName) on your existing panel, and then place your image with css:    .myCssName {background-image:url(url); background

<    1   2   3   >