Re: Need some suggestions

2009-12-19 Thread Sripathi Krishnan
> > So I guess it will be better for me to have different GWT applications for > different modules as this will lessen the complexity. > Wrong. Its never good to have multiple modules. It increases your build time, and prevents GWT from optimizing your application. You should stick to a single modu

Re: RequestBuilder call fails on FF

2009-12-19 Thread keyboard_samurai
can anyone help me on this ? any pointers to debug this issue on firefox would be useful ... Thanks! On Dec 19, 3:09 pm, keyboard_samurai wrote: > Hi, > > I am using GWT 1.7 and within a widget we are trying to access a JSON > service there is a issue which is seen only in firefox.  The issue is

Re: UIBinder @UiHandler does not work with Button

2009-12-19 Thread Sripathi Krishnan
Could you post the relevant code fragments? --Sri 2009/12/19 Richard > Hi all, > > I've tried to create a simple GUI with a TextBox and a Button > inside a FlowPanel using UiBinder. I want to display an alert dialog > box when user clicks on the button. But nothing happen for both using > @UI

Unable to find 'stockwatcher.gwt.xml' Error strikes again

2009-12-19 Thread AeMaeth
Hi. I'm a newb at both GWT and internet related programming. I tried using the GWT v2.0 and found an error mentioned in the headline. I checked for solutions in previous versions but none of them worked. The server starts running nicely and generates the IP for me to use to see the StockWatcher pag

Sticky Notes application

2009-12-19 Thread Michael Dausmann
Hi guys I am trying to build an app with draggable elements similar to the sticky notes application that comes with the Google App Engine SDK (which is very good btw). Unfortunately my GWT is basic and the coding of the sample is kinda intermediate-advanced. I am trawling through the code but I

Deploying Google Web Toolkit on Webfaction?

2009-12-19 Thread kesun421
Hi all, I was wondering if there is anyone with experience of deploying GWT apps on Webfaction hosting accounts? I am thinking that since simple GWT apps are HTML + JS, all I need is a web server (apache/IIS). Thanks, Ke -- You received this message because you are subscribed to the Google Gro

Re: FormPanel submit problem

2009-12-19 Thread 张也奈川郎
Zhang Qi(张琦)?? -- 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...@googlegroup

Migrating to 2.0 layout panels, problem with redraw after javascript callback

2009-12-19 Thread jonathan
First off, great job with getting 2.0 out the door! I've been migrating some code to use the new 2.0 layout panels and, for the most part, the transition has been smooth. However, I'm encountering one problem when using callbacks with the Facebook JS client API. There are a few cases where I do

Non GWT Project's Classes

2009-12-19 Thread gatty
hi , Can we use non gwt project's classes in GWT project? -- 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-t

JUnit 4 possible?

2009-12-19 Thread Sekhar
Is it possible to use JUnit 4 in GWT 2? -- 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: UiBinder Composite problem?

2009-12-19 Thread FKereki
In full validation of Murphy's Law, a few minutes after posting my questions, everything clicked and my code works. Now, just in case I'm doing something wrong --or at least, in a not- too-good way-- here's what I did: In the definition of my Country-and-State view, I added public class Countr

Re: begin with GWT

2009-12-19 Thread Ian Bambury
A GWT application is a web application. So that's easy :-) Any time you open a new tab in a browser, or a tab in another browser, you get a new copy of the application. This new copy has no connection with any other copy that is running (unless you design it, say, to use cookies for some reason to

UiBinder Composite problem?

2009-12-19 Thread FKereki
I want to include a composite object (a pair --Country and State-- of related listboxes: whenever the user selects a country, the second listbox is populated with that country's regions) in a UiBinder created form. The internal composite logic takes care of dealing with the Country value change ev

Re: GWTShell dev mode problem

2009-12-19 Thread Shawn Brown
> I have war/WEB-INF/web.xml in my project but GWT-plugin still launches > GWTShell instead of DevMode. > What should I do? Hi, There may be more than one answer and your issue may be different than mine especially since I am using appengine but... DevMode wouldn't launch for me either so... I

GWT 2.0.0 module eval performance with IE6

2009-12-19 Thread Alex
I've noticed that the performance for the module eval (when the javascript is initially parsed on page load) has decreased for IE6 going from GWT 1.7.1 to GWT 2.0.0. I'm seeing about half a second slowdown. See http://development.lombardi.com/?p=1150 and http://development.lombardi.com/?p=1138 for

Re: Any easy way to tell which file is for which permutation?

2009-12-19 Thread Alex
I wrote a post about GWT linkers last year and that includes a linker that produces a manifest that shows which generated file goes with which set of properties, including user.agent. Take a look at http://development.lombardi.com/?p=29 to see if it would help you out. On Dec 19, 5:57 pm, peterk

Non standard CSS in UiBinder

2009-12-19 Thread Alexander De Leon
If I use non standard css properties in UiBinder (e.g. -moz-border-radius-bottomleft) , I get the following warnings : [WARN] Line 17 column 65: encountered "-". Was expecting one of: "}" ";" and these properties are not compiled into the resulting CSS file. Is there a way ar

Re: GWT Simcity like game

2009-12-19 Thread hemodroid
The images are coming from the open source clone of transport tycoon deluxe: http://www.openttd.org/. On 19 déc, 23:51, Magno Machado wrote: > Awesome! > > I'm also developing a simcity like game with GWT... Where did you get the > images from? Or you have created them yourself? > > 2009/12/18 he

Re: Any easy way to tell which file is for which permutation?

2009-12-19 Thread peterk
Actually...upon further testing I'm back to square one. Rather strangely it appears that the order listed in the compile report is NOT the order in which the permutations are compiled. For example, the permutation for gecko 1_8 js is the 3rd file to be created but is listed as permutation 7 in th

Convenience callback method

2009-12-19 Thread bhomass
I went thru Ray Ryan's talk on Best Practice for Arch. GWT App. I am not able to figure how and who eventually called the "convenience" method new GotDetails(){ public void got(ArrayList details){ render... } } can someone who followed the talk shed some lights? -- You received this m

Re: Any easy way to tell which file is for which permutation?

2009-12-19 Thread peterk
Eep! Nevermind. I found the -compileReport which shows which permutation number is for which client. Then sorting my files in create order reveals which relates to which permutation number...and thus which target. A bit of a round-about way of doing it, and maybe there's an easier way, but this w

Re: GWT Simcity like game

2009-12-19 Thread Magno Machado
Awesome! I'm also developing a simcity like game with GWT... Where did you get the images from? Or you have created them yourself? 2009/12/18 hemodroid > I use the DOM.createDiv() and Node.appendChild() methods of the GWT > api. > Those methods are natively implemented in javascript; > > 99%

Any easy way to tell which file is for which permutation?

2009-12-19 Thread peterk
Hey all, Sorry if this is a silly question but.. ...as you all know, if you compile with a regular number of permutations, you get a variety of javascript files for each of the different target browers. They typically have very random names. I was just wondering is there any easy way to spot whi

Re: Hosted mode won't work since 2.0 upgrade

2009-12-19 Thread Zoltán Törteli
This might help: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/9438f21418286c96/cb251b50405b79ce?lnk=gst&q=Mac+hosted+mode#cb251b50405b79ce On Dec 19, 10:44 am, Shawn Brown wrote: > > Also, if you GXT it will not work with GWT 2.0 > > That does not seem right.  It work

UnsatisfiedLinkError on Production Machine

2009-12-19 Thread canistel
I built a test gwt application using Netbeans 6.7, and the gwt4nb plugin; vista 64 bit. It all worked perfectly there, including debug mode and production mode. I built the war using netbeans, then uploaded that to another server (windows server 2003), but when I run the application, I get somethin

Re: Use smartgwt or not

2009-12-19 Thread Yozons Support on Gmail
EXT is GPL while Smart is LGPL, and of course both offer commercial licenses. LGPL can be used commercially, while GPL cannot, so that could be a consideration. And of course commercial licenses are fine, unless your code itself is going to be open source. -- You received this message because y

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 wrote: > Hi All, > > I am new to GWT, I tried creating UI, Form and communicating with server .. > all is fine .. GWT is cool > >

Re: Use smartgwt or not

2009-12-19 Thread keyboard_samurai
I would agree on ext gwt .. Its faster and much better than smart gwt. -- 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

Re: How to position a PopupPanel like google does with error popups in Gmail

2009-12-19 Thread Jaap
Thanks for your replies. However it was not what exactly what I was looking for my site http://www.cheapriver.com I finally got it to work how I wanted it to work with some help of a colleaugue at work. I've posted the code on my blog http://jaap.haitsma.org/2009/12/19/status-popup-for-gwt-google-w

UIBinder @UiHandler does not work with Button

2009-12-19 Thread Richard
Hi all, I've tried to create a simple GUI with a TextBox and a Button inside a FlowPanel using UiBinder. I want to display an alert dialog box when user clicks on the button. But nothing happen for both using @UIHandler nor adding a ClickHandler directly on the button. Is it a known bug or I'm

Need some suggestions

2009-12-19 Thread Abdullah Shaikh
Hi All, I am new to GWT, I tried creating UI, Form and communicating with server .. all is fine .. GWT is cool But I need some suggestion from you guys, I am planning to replace the UI of an existing system with GWT. The system is quite big containing different modules like User Management, Order

Re: Use smartgwt or not

2009-12-19 Thread gaill...@audemat.com
I use GXT (Ext GWT from extJS) for several months with JBOSS 5.1, the choice was made quickly between SmartGWT and GXT, GXT offers greater customization and management of bindings are perfect with annontations provided by GXTForms 0.2. There is no need to use Gilead or Hibernate4gwt. -- You recei

Re: Developing a plugin based application

2009-12-19 Thread Eric Ayers
Here's an outline of what I had in mind: abstract class Layer { ... } interface LayerWrapper { // Factory method for your subclass Layer createLayer(); } class MyLayer extends Layer { private static class MyLayerWrapper implements LayerWrapper() { public Layer createLayer() {

Re: 1.7->2.0 hosted mode no longer working

2009-12-19 Thread balachandra maddina
Please ignore my mail. i missed the module name while launching the development mode. its working fine for me now. Thank you, bala. On Sat, Dec 19, 2009 at 7:41 PM, balachandra maddina wrote: > hi Chris, > > Could you post the sample launch script please. im trying to run the app > in noserver

Re: 1.7->2.0 hosted mode no longer working

2009-12-19 Thread balachandra maddina
hi Chris, Could you post the sample launch script please. im trying to run the app in noserver mode but its not getting up. im using 2.0 here. Thank you, bala. On Fri, Dec 18, 2009 at 2:34 AM, Chris Ramsdale wrote: > Actually, if you are using a Web App launch config, it's even easier than I

Re: dynamically fetch JSON feeds from other web domains

2009-12-19 Thread ben fenster
thanx exactly what i needed On 19 דצמבר, 13:18, Thomas Broyer wrote: > On Dec 19, 12:12 pm, Thomas Broyer wrote: > > > On Dec 19, 11:10 am, ben fenster wrote: > > > > in google > > > articlehttp://code.google.com/intl/iw/webtoolkit/doc/latest/FAQ_Server.html#... > [...] > > If you use GWT 2.0,

QxWT 1.0.0.0 released

2009-12-19 Thread Tom
Hi, I just wanted to inform you about a JSNI-Wrapper I released this week. It wraps the JavaScript library Qooxdoo and provides you with widgets and ui-controls. The release post is here: http://tomsondev.bestsolution.at/2009/12/17/qxwt-1-0-0-0-released/ Tom -- You received this message becau

GWTShell dev mode problem

2009-12-19 Thread Andrey
Hello! I have war/WEB-INF/web.xml in my project but GWT-plugin still launches GWTShell instead of DevMode. What should I do? Thanks! -- 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...@

Re: dynamically fetch JSON feeds from other web domains

2009-12-19 Thread Thomas Broyer
On Dec 19, 12:12 pm, Thomas Broyer wrote: > On Dec 19, 11:10 am, ben fenster wrote: > > > in google > > articlehttp://code.google.com/intl/iw/webtoolkit/doc/latest/FAQ_Server.html#... [...] > If you use GWT 2.0, just use the Jsonp module and JsonpRequestBuilder > which will do all those things

Re: dynamically fetch JSON feeds from other web domains

2009-12-19 Thread Thomas Broyer
On Dec 19, 11:10 am, ben fenster wrote: > in google > articlehttp://code.google.com/intl/iw/webtoolkit/doc/latest/FAQ_Server.html#... > > they say > > If the external feed doesn't support callback function names using > array syntax, you can generate uniquely named bridge methods like > jsonCall

Re: Where to put server-configuration property files?

2009-12-19 Thread keyboard_samurai
If you have a configuration file which is to be shared across multiple web applications or deployments you could use a shared drive for this which is accessible to all your applications and get it loaded from there. But i still wouldn't suggest having it outside your war as you are creating a depen

dynamically fetch JSON feeds from other web domains

2009-12-19 Thread ben fenster
in google article http://code.google.com/intl/iw/webtoolkit/doc/latest/FAQ_Server.html#Why_doesn%27t_GWT_provide_a_synchronous_server_connection_opt they say If the external feed doesn't support callback function names using array syntax, you can generate uniquely named bridge methods like jsonCa

RequestBuilder call fails on FF

2009-12-19 Thread keyboard_samurai
Hi, I am using GWT 1.7 and within a widget we are trying to access a JSON service there is a issue which is seen only in firefox. The issue is at sendRequest() my backend service is invoked but on the client side i do not get the response stauts code as 200, instead of 200 we see its 0 and the re

Re: cant see the incubator paging table when moved to gwt2

2009-12-19 Thread ben fenster
??? On 18 דצמבר, 14:28, ben fenster wrote: > does anyone knows why the paging table stopped working on gwt2.0 ??? > there is 0 compile errors -- 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

Re: Hosted mode won't work since 2.0 upgrade

2009-12-19 Thread Shawn Brown
> Also, if you GXT it will not work with GWT 2.0 > That does not seem right. It works for me and I can't do magic. It works. -- 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...@googleg

Re: Deprecated XXXListenerCollection warnings when migrating to GWT 2.0

2009-12-19 Thread Al Murauski
Absolutely the same problem after migrating to 2.0. On 19 дек, 00:57, Raziel wrote: > Hi, I'm migrating my application from GWT 1.7 to GWT 2.0, and > everything seems ok "except" for the warning below every time I > compile: > > ]       Adding '69' new generated units > ]          Validating newl

Re: Developing a plugin based application

2009-12-19 Thread Marco Visonà
Hi Eric thank to your advice I found a partial solution. I have an interface Layer implemented by each layer and I created this layer factory: public class LayerFactory { public enum LayerType { SENSORS_LAYER, TEST_LAYER } public Layer newInstance(Laye