Re: key events in firefox

2010-01-20 Thread muhannad nasser
this is the code for the event; @Override public void onBrowserEvent(Event event) { super.onBrowserEvent(event); if(DOM.eventGetType(event) == Event.ONKEYPRESS){ if(event.getKeyCode() == KeyCodes.KEY_ESCAPE){ hide(); }else if(event.getKeyCode() == KeyCodes.KEY_ENTER){ if(okButton.isVisible())

Re: Cannot debug GWT 2.0 app embedded within external iframe

2010-01-20 Thread Itzik Yatom
I have the same issue, I've tried to change the hosted.html file but there is no change. Itzik On Jan 9, 6:04 pm, Stevko andy.ste...@gmail.com wrote: I've managed to get my application to work in an external iframe by editing the hosted.html file and changing line 226 from var topWin =

Re: Why is ajax in debug mode so slow?

2010-01-20 Thread makoki
Maybe it's because of real-time java to javascript compilation? On 20 ene, 02:53, flyingb...@gmail.com flyingb...@gmail.com wrote: In gwt debug mode, loading the data from the ajax serialization is so slow. If i compile it and run it the away loads in about a second but if loaded though the

Re: gwt-servlet.jar being deleted at each Eclipse startup after upgrading to gwt 2.0

2010-01-20 Thread aliman
We have this problem. Our workaround has been to delete gwt- servlet.jar from the svn repository, then add it to svn:ignore on the WEB-INF/lib folder. Eclipse then re-adds the jar when it launches, but that's ok because it's ignored w.r.t. svn. We have a separate production build system using

Re: Image Rotates Itself

2010-01-20 Thread Martin Trummer
what happens if you copy the URL of that image and open it in a new browser window/tab? maybe you should also clear all cache/s, restart the webserver/s to avoid any old data to confuse you. On 19 Jan., 16:25, Deerman deermang...@gmail.com wrote: Thank you for your reply. The thing is I am

Re: How to insert a script tag into the DOM

2010-01-20 Thread Ladislav Gazo
Hello, due to such kind of problems we used a routing mechanism implemented in ProxyServlet (http://code.google.com/p/acris/wiki/ SeparateClientAndServer). You would direct it to URI in original URL but the proxy will redirect it to appropriate URL and return the response back to your client

GWT on iPhone and Android

2010-01-20 Thread Grant
Hi any people out there targeting mainly iPhone and other devices such as Android phones? I have been working on an app that works without fail on desktop browsers and on iPhone when it is connected by wireless network. Frustratingly it will sometimes fail to run when connected by 3G. The symptom

Re: Can't make sprites from ClientBundle

2010-01-20 Thread Célio
That's not the case. As I said, the image file's name is medium.png so the @Source annotation is not needed. I also said that I double checked everything. On 19 jan, 20:01, mariyan nenchev nenchev.mari...@gmail.com wrote: You have to use @Source(yourimage.dif) if your image does not have name

Re: GWT on iPhone and Android

2010-01-20 Thread Lothar Kimmeringer
Grant schrieb: I have been working on an app that works without fail on desktop browsers and on iPhone when it is connected by wireless network. Frustratingly it will sometimes fail to run when connected by 3G. The symptom is you load the page and just get a blank screen. Check the server-log

Re: Using my own external jars

2010-01-20 Thread Juan M.M.M.
Ok. This is what I've done at the moment. -I've added the external JARS. -I've added the source code to this JARS. ... And what about the gwt.xml file where I have to put it? On Jan 19, 9:59 pm, jfagh jfa...@gmail.com wrote: Juan, Also, you need to include both .java and .class files in your

Re: Using my own external jars

2010-01-20 Thread Alexander
Place where you like but remeber that GWT compiler will look for client code in 'client' subpackage where xml is situated. 2010/1/20 Juan M.M.M. knn0n@gmail.com Ok. This is what I've done at the moment. -I've added the external JARS. -I've added the source code to this JARS. ... And

Re: Problem running application GWT 2.0 with external server and DevMode, unable to find module file

2010-01-20 Thread denis56
see another post http://groups.google.com/group/google-web-toolkit/browse_thread/thread/1ac1304e312e7290 make sure that src folder is in your classpath in eclipse In Classpath tab: under User Entries add your source folder. On 15 Jan., 13:06, mlopez marcoslopezbarbe...@gmail.com wrote: Hello

Adding HTML Widgets to Root - Multiple Clicks add multiple widgets

2010-01-20 Thread Saeed
Adding HTML widgets to root puts multiple widgets to the root element when clicked on the Click Handler. How do i avoid it? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Customize tinymce context menu with gwt

2010-01-20 Thread vijjuram
Hi We want to customize context menu of tinymce with GWT. We are adding the tinymce widget to FocusPanel, which will listen to mouse events. mouse right click event on tinymce is propagating to my focus panel except from textarea portion of the tinymce widget. But i also want to listen mouse right

GWT + FormPanel + FileUpload + HTTPS

2010-01-20 Thread chillyspoon
Hi everyone, We use GWT extensively for a highly interactive user interface that administers various software and hardware systems via a combination of APIs. Right now I need to introduce functionality for file upload that is posting (HTTP POST) to an SSL URL with preemptive BASIC AUTH. We are

Re: Gilead 1.3 + Hibernate + GWT 2.0

2010-01-20 Thread mig
I've got Gilead 1.2.3 set up and working with Gilead and GWT 2.0 RC2 in both stateless proxy mode and dynamic proxy mode. Although there are some problems with dynamic proxy generators (not Gileads fault), everything works just fine. Do you strictly need Gilead 1.3 ? On 19. Jan, 23:16 h., John

Re: Using my own external jars

2010-01-20 Thread Juan M.M.M.
Ok. I'm going crazy with this problem. http://www.flickr.com/photos/46306...@n05/4290746026/sizes/o/ --- There u can see my project structure and the error log when I try to join in the web application with firefox. I'm going crazy because I have allready done this for another .jar

Re: Gilead 1.3 + Hibernate + GWT 2.0

2010-01-20 Thread John Ivens
I don't strictly need Gilead 1.3... I'd be happy to get 1.2.3 working... On Wed, Jan 20, 2010 at 7:10 AM, mig michal.gro...@gmail.com wrote: I've got Gilead 1.2.3 set up and working with Gilead and GWT 2.0 RC2 in both stateless proxy mode and dynamic proxy mode. Although there are some

Re: Using my own external jars

2010-01-20 Thread Juan M.M.M.
Ok. I'm going crazy with this problem. http://www.flickr.com/photos/46306...@n05/4290746026/sizes/o/ --- There u can see my project structure and the error log when I try to join in the web application with firefox. I'm going crazy because I have allready done this for another .jar

Re: Gilead 1.3 + Hibernate + GWT 2.0

2010-01-20 Thread Marcos Alcantara
I too have it working in stateless mode. Be careful by not letting different Gilead versions and respectively dependencies versions in your lib directory, as Bruno (Gilead leader) renamed it's core-files and that can get a bit confusing. :-) Marcos Alcantara On Jan 20, 12:50 pm, John Ivens

Re: Using my own external jars

2010-01-20 Thread Juan M.M.M.
Sorry I dont know what is happening -- 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

IllegalStateException when passing HttpSession as parameter

2010-01-20 Thread mata_svada
Hi! I'm getting a weird behaviour with GWT 1.7.1 (on Mac OS X 10.6) on the server side: When I pass the HttpSession Object I obtain by calling RemoteServiceServlet.getThreadLocalRequest().getSession() as a parameter to a method of any Object and call setAttribute(something, something) in that

how to create at GWT project from WAR file

2010-01-20 Thread sudhakar
Hi, i am having at WAR file which is packed from gwt eclipse project now i want to convert this WAR file to normal gwt eclipse project how can i do that one please help me to convert this WAR to gwt project Regards, Sudhakar -- You received this message because you are subscribed to the

Re: FW: problem compiling gwt 2.0 using ant

2010-01-20 Thread Sergey
Make sure, that you have just one version of GWT libraries in classpath, it works for me. -- 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

Re: Panels apparently not working?

2010-01-20 Thread zmo
I have the same problem, I think Layout Panels dont work at all. final DockLayoutPanel dp = new DockLayoutPanel(Unit.EM); String content = I had to use many grids in my first GXT project. dp.addNorth(new Button (North), 2); dp.addSouth(new HTML(bSouth/b), 2);

caching data on the client side

2010-01-20 Thread JayFo
The GWT application I'm developing (GWT / Spring / Hibernate) returns some large resultsets for the async service requests that feed its pages. Caching these results on the server-side saves me some processing, but I can't avoid the serialization and deserialization required to send it to the UI.

Can I add a UIObject to a Panel?

2010-01-20 Thread Lyn Headley
Hello, I am using the UIBinder to build a div, by binding an xml file to a java class which extends UIObject. However, I cannot add an instance of this class to a panel using the Panel's add method, because add takes an object of type Widget, and I don't have one of those; I have a UIObject. Is

DatePicker disabling specified dates

2010-01-20 Thread Mark Davis
Hi, I need to disable specified dates in DatePicker. What is the best way to do it? thanks in advance, Mark -- 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

connect java class with html files

2010-01-20 Thread joe7935
Hello all, I am building a gwt project , in my project i have a lot of class and a lot of html files . For example login screen that behind this screen working to files : 1- java class (entry point) .2- html file. I build anther java class for add new user , and i have i html file for add new

DockLayoutPanel layout problem with south and UiBinder

2010-01-20 Thread Marcel Wagner
I have tried to use the DockLayoutPanel and the UiBinder with the following layout: g:DockLayoutPanel unit='EM' g:north size='5' lp:HeaderArea ui:field='headerArea' / /g:north g:west size='12'

about the limitation of MVC

2010-01-20 Thread yu.cu...@126.com
Hi, Recently I am researching the MVC in GWT and meet a problem. According to my understanding, in essentially, the benefits of MVC are 1) decouple the viewer and model 2) make the widgets coordinating each other. And the second point is very important to my application. So my question is how to

GWT 2.0 - SOP and Development Mode

2010-01-20 Thread preacher860
Hi there, As many people, I'm experiencing troubles while trying to debug an application in Development Mode when it tries to retrieve some JSON data from a remote server. It's obviously a Same Origin Policy problem but I can't find a satisfying solution to this issue. The setup is quite

GWT development plugin for firefox

2010-01-20 Thread Victor
Hi I m migrating commercial project to new version form 1.5 to 2.0 and jst stuck in I m using GWT version : 2.0.0 Firefox version : 3.0.7 Plugin version : 1.0.7263 After installing the plugin , I restarted my FF but its fails to start wid error below /usr/lib/firefox-3.0.7/run-mozilla.sh:

Re: about the limitation of MVC

2010-01-20 Thread Alexander
Had you read about MVP? 2010/1/20 yu.cu...@126.com yu.cu...@126.com Hi, Recently I am researching the MVC in GWT and meet a problem. According to my understanding, in essentially, the benefits of MVC are 1) decouple the viewer and model 2) make the widgets coordinating each other. And the

Re: Unable debug gadgets on Shindig container

2010-01-20 Thread hferreira
Hi, Did you solve this problem already? I'm using as the container the WSO2 and Eclipse 3.5 as the IDE. Can you tell me step by step which are the required to debug? thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Greeting Service

2010-01-20 Thread joe7935
Hello all, Can i send a object to this function instead the string parameter ? please help me... -- 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

GWT MAPS: how to change marker's color ?

2010-01-20 Thread SergeZ
Hi everybody! I have a trouble in changing marker's color. I thought that I can do it through changing style of marker but I can't - I didn't found the appropriate method. So, how can i change color of the existing makrer ? For example from default red to , say, green. Thanks a lot for your

Re: Using my own external jars

2010-01-20 Thread Juan M.M.M.
http://www.flickr.com/photos/46306...@n05/4290882114/sizes/o/ - Here there is more info about the structure of the project and .jar files that I want to use (intimeclien1.0.jar and xmlutils2.0.jar). Also I've created the XMLUtils.gwt.xml with this content: ** ?xml version=1.0

Re: Why is ajax in debug mode so slow?

2010-01-20 Thread flyingb...@gmail.com
So what is the debugger doing to be so slow? Isn't the debugger suppose to just be pure java emulating the outcome of the script. On Jan 20, 2:01 am, makoki iagoto...@gmail.com wrote: Maybe it's because of real-time java to javascript compilation? On 20 ene, 02:53, flyingb...@gmail.com

Re: Problem switching to GWT 2.0 from GWT 1.6 (mysql related I think)

2010-01-20 Thread Acerezo
Hello, Did you find the solution? Thanks. On 24 dic 2009, 12:44, monkeyboy dilbert.elbo...@gmail.com wrote: I think that if you look at the root of the problem you will find that this is an access problem which can be deduced from the line: Caused by: java.security.AccessControlException:

Re: Why is ajax in debug mode so slow?

2010-01-20 Thread Alexander
Just think about. You are debugging in real browser that works with real JS code! 2010/1/20 flyingb...@gmail.com flyingb...@gmail.com So what is the debugger doing to be so slow? Isn't the debugger suppose to just be pure java emulating the outcome of the script. On Jan 20, 2:01 am, makoki

Re: Greeting Service

2010-01-20 Thread Alexander
What? 2010/1/20 joe7935 joseph.p...@gmail.com Hello all, Can i send a object to this function instead the string parameter ? please help me... -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Using my own external jars

2010-01-20 Thread Eric
On Jan 19, 4:59 pm, jfagh jfa...@gmail.com wrote: Juan, Also, you need to include both .java and .class files in your JAR. And the .java files must not reference any unsupported libraries (i.e. those that cannot be translated from java to js by GWT) James He doesn't need to include the

Re: MVP Article... Source Code?

2010-01-20 Thread Eduardo Nunes
I'm using a different approach, below a draft source code of my AppController class. What do you think? public class AppController implements ValueChangeHandlerString { private final MapString, PresenterType urls; private final MapPresenterType, Provider? extends Presenter presenters; @Inject

Re: caching data on the client side

2010-01-20 Thread Alexander
Concurrent async results? BTW Im interested too in cache approach. 2010/1/19 JayFo jeremy.fin...@gmail.com The GWT application I'm developing (GWT / Spring / Hibernate) returns some large resultsets for the async service requests that feed its pages. Caching these results on the server-side

Re: Greeting Service

2010-01-20 Thread Jason Essington
yes: http://code.google.com/webtoolkit/doc/latest/DevGuideServerCommunication.html Jason Essington Java Software Engineer . C A L Y P S O 215 West Pine St Pinedale, WY 82941 OFFICE 307-367-2276 MOBILE 307-749-8788

Forms that send arrays of items

2010-01-20 Thread darkling
Is there an effective way of using GWT's FormPanel to post an array of values to a servlet? It's related to a file upload widget so I need to do this via a standard HTTP request rather than an RPC. The idea is that in addition to posting the file, the user can select several options as meta data.

Re: MVP Article... Source Code?

2010-01-20 Thread Jeff Chimene
Hi Eduardo: Comments inline. On 01/20/2010 09:34 AM, Eduardo Nunes wrote: I'm using a different approach, below a draft source code of my AppController class. What do you think? public class AppController implements ValueChangeHandlerString { private final MapString, PresenterType urls;

Re: caching data on the client side

2010-01-20 Thread mariyan nenchev
Hi, I am using in memory caching(hashmap), which in gwt case is done in the browser's cache and server caching (memcache). You may also consider using the light gwt collections. I also use server push to make my data reload in case it is been changed on the server by the admin for example. On

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: gwt-servlet.jar being deleted at each Eclipse startup after upgrading to gwt 2.0

2010-01-20 Thread Erik Uzureau
Yes, this does seem to be a good workaround. I can't, however, convince anyone on my team to use it, because: 1) Not all members of my team are experiencing this issue. (At a larger level, I think the general lack of interest by the community in this thread means it's not happening to everyone

Re: MVP Article... Source Code?

2010-01-20 Thread Eduardo Nunes
Comments inline. On Wed, Jan 20, 2010 at 2:46 PM, Jeff Chimene jchim...@gmail.com wrote: Hi Eduardo: Comments inline. On 01/20/2010 09:34 AM, Eduardo Nunes wrote: I'm using a different approach, below a draft source code of my AppController class. What do you think? public class

Re: Datepicker and week numbers

2010-01-20 Thread P.G.Taboada
Hi, no official statement on this regard? brgds, Papick On 25 Nov. 2009, 22:04, P.G.Taboada pgtabo...@googlemail.com wrote: Any plans to include week numbers to the calendar widget? brgds, Papick -- You received this message because you are subscribed to the Google Groups Google Web

Re: TabLayoutPanel css

2010-01-20 Thread P.G.Taboada
And no response. I somehow feel like I am badly missing something. Does someone want to share some css? Would be great. brgds, Papick On 21 Dez. 2009, 20:12, IvanRdz ivan.rd...@gmail.com wrote: and... what about this it seems like in standard.css is missing this style On 12 dic, 03:58,

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: one servlet, many clients with gwt-rpc

2010-01-20 Thread Peter Simun
Hello shed, yes, you can use ProxyServlet, but you have to deploy ProxyServlet (acris-external) also with your external application. So your proxyservlet will handle each request in your external appication and in case of specific request url (for example http://localhost:8080/app/service)

Compiling gwt code to a folder

2010-01-20 Thread Prashant Gupta
Hi, I want to put all my compiled code in a specific folder, say /war/gwt but * rename-to *field in GWT module file does not accept '/' in the value. Is there any work around to do the same ? I am using google eclipse plugin on eclipse with GAE/J. Thanks. -- You received this message because

Re: MVP Article... Source Code?

2010-01-20 Thread Jeff Chimene
Comments inline. On 01/20/2010 10:06 AM, Eduardo Nunes wrote: Comments inline. On Wed, Jan 20, 2010 at 2:46 PM, Jeff Chimene jchim...@gmail.com mailto:jchim...@gmail.com wrote: Hi Eduardo: Comments inline. On 01/20/2010 09:34 AM, Eduardo Nunes wrote: I'm using a

Re: MVP Article... Source Code?

2010-01-20 Thread Eduardo Nunes
Comments inline. On Wed, Jan 20, 2010 at 3:54 PM, Jeff Chimene jchim...@gmail.com wrote: Comments inline. On 01/20/2010 10:06 AM, Eduardo Nunes wrote: Comments inline. On Wed, Jan 20, 2010 at 2:46 PM, Jeff Chimene jchim...@gmail.com mailto:jchim...@gmail.com wrote: Hi Eduardo:

Re: GWT MAPS: how to change marker's color ?

2010-01-20 Thread Deanna Bonds
You will need a new graphic for that. The markers are images. You can use any image you like for a marker (of appropriate size). It also takes an optional shadow image to go with it. Search around and you can find many different markers premade for you, including those that look like the

Re: caching data on the client side

2010-01-20 Thread JayFo
Yes. Consider: - GWT component 1 calls GWT async service A. Processing starts on server-side. - GWT component 2 calls GWT async service A. Processing starts on server-side. - Async responses from both calls to service A arrive more or less simultaneously on the server-side. Any caching logic

Re: MVP Article... Source Code?

2010-01-20 Thread Jeff Chimene
Comments inline. On 01/20/2010 11:10 AM, Eduardo Nunes wrote: Comments inline. On Wed, Jan 20, 2010 at 3:54 PM, Jeff Chimene jchim...@gmail.com mailto:jchim...@gmail.com wrote: Comments inline. On 01/20/2010 10:06 AM, Eduardo Nunes wrote: Comments inline. On

Re: caching data on the client side

2010-01-20 Thread Alexander
GWT on client side is single thread, right? There is no any concurrent problem at all! 2010/1/21 JayFo jeremy.fin...@gmail.com Yes. Consider: - GWT component 1 calls GWT async service A. Processing starts on server-side. - GWT component 2 calls GWT async service A. Processing starts on

Datanucleus entity serialization and GWT 2.0

2010-01-20 Thread Dan Billings
Does GWT 2.0 do anything to ease the pain of serializing datastore entities (e.g. Key) to be sent through GWT-RPC? I know Gilead is an option, but it needs an official update for 2.0. I emailed Bruno and he said he thinks GWT 2.0 addresses this, but I have not found evidence of that. Also an

Re: about the limitation of MVC

2010-01-20 Thread Sky
For example, one of a simple case is how to implement this functionality of making one button becoming grayed if detecting a specific button is clicked by twice. That's just logic that belongs in the View. There are numerous ways of structuring that logic and it depends on how abstract you want

Re: MVP Article... Source Code?

2010-01-20 Thread Eduardo Nunes
Comments inline. On Wed, Jan 20, 2010 at 4:38 PM, Jeff Chimene jchim...@gmail.com wrote: Comments inline. On 01/20/2010 11:10 AM, Eduardo Nunes wrote: Comments inline. On Wed, Jan 20, 2010 at 3:54 PM, Jeff Chimene jchim...@gmail.com mailto:jchim...@gmail.com wrote: Comments

Re: Eclipse plugin for GWT 1.7

2010-01-20 Thread Sanjay
Wonderful. Thanks I will try that out. On Jan 19, 10:58 am, Keith Platfoot kplatf...@google.com wrote: No problem.  If you would prefer to use the version of the 1.1 version of the Google Plugin for Eclipse that was current when GWT 1.7.1 was released, it's available for download as a zip file

Re: Problem with deploy gadget on iGoogle

2010-01-20 Thread Vitaly Parfonov
Any idea, please? 2010/1/19 vetal vitaly.parfo...@gmail.com: Hi all! I develop gadget on GWT and try deploy it on iGoogle. My gadget call some REST service and during this calling i get Access to restricted URI denied can some body help me to solve this problem. Thanks. -- Best

Seamlessly Integrating GWT and Gears

2010-01-20 Thread Greg
Hi all, Has anyone tried to integrate Gears with a GWT application that uses Ajax to access the backend? Specifically, I am thinking of having a Gears class that implements the DatabaseAsync interface so that my client code can call the same methods and I will swap out the Gears class and the

Re: Using Gilead with GWT 2.0 ms1

2010-01-20 Thread Trevor Skaife
my guess is that your issue has to do with the 2 versions you have of some of the beanlib jars. The ones I have are: beanlib-5.0.2beta1.jar beanlib-hibernate-5.0.2beta1.jar On Jan 19, 11:28 am, John Ivens john.wagner.iv...@gmail.com wrote: Oops.. the list, easier to read..    

Re: Seamlessly Integrating GWT and Gears

2010-01-20 Thread John V Denley
Yup, I need the same thing, although Im using App Engine for the datastore, but have no real idea how to get gears integrated. On Jan 20, 9:33 pm, Greg gregbram...@gmail.com wrote: Hi all, Has anyone tried to integrate Gears with a GWT application that uses Ajax to access the backend?

Re: javascript error (invalid Argument)

2010-01-20 Thread John V Denley
Ive just tried to step through my code painfully one line at a time in the eclipse debugger everything seemed to work OK up to the point when it was about to start waiting for user interraction (or feasibly when it starts trying to draw to the screen), then I got the following error: Exception

Detecting dev mode inside a generator

2010-01-20 Thread Brendan Kenny
Is it possible to detect within a generator that it is being run in development mode? The ideal would be for the generator to run the same way in development mode as in compilation for production code, I suppose, but the information can be useful. I feel like I may be overlooking something obvious

About user logged

2010-01-20 Thread nacho
Hi, i want to make an application in wich the user must log in. What i do for it is i have filter defined in the web.xml wich filters all the request like /myapplication/* If the user is loged it makes the request, if not i redirect the user to the login page. My problem is when the session

Re: gwt-servlet.jar being deleted at each Eclipse startup after upgrading to gwt 2.0

2010-01-20 Thread Jeff Schnitzer
I posted this in the issue tracker, which turned into a general rant about jar handling in GWT and Appengine (which both seem to want to replace jars magically). We should really crosspost this to the appengine-java list. - This solution (add gwt-servlet.jar to svn:ignore) is grossly

Re: Confusion about declaring a Tree in UiBinder

2010-01-20 Thread Robin
I also face this problem. Probably uiBinder just does not support this. the alternative could be just using a ui:field on the tree and add the treeitem in the code. On Dec 20 2009, 11:35 pm, evershore eversh...@googlemail.com wrote: Hi everyone, I've recently started digging into GWT 2.0 and

Re: about the limitation of MVC

2010-01-20 Thread yucubby
I only gives a very simple case. Thinking in a complex situation, if there are many buttons or other widgets, and there will change their state (become gray or not for example) according to the other widget's action or event. Then how do we handle all of this logical in the viewer? If that, the

Re: about the limitation of MVC

2010-01-20 Thread yucubby
Thanks for your suggestion. MVP is a closer approach, but it is still suitable because it has a model. In my case, building a model may be unnecessary or doesn't work. For example, I don't think it makes sense to build a model only for the buttons. (Assuming my application is just showing the

Re: About user logged

2010-01-20 Thread Cristian Nicanor Babula
On 01/21/2010 02:40 AM, nacho wrote: Hi, i want to make an application in wich the user must log in. What i do for it is i have filter defined in the web.xml wich filters all the request like /myapplication/* If your application filters all the requests like /myapplication/*, you could

LGPL and other restrictive licenses

2010-01-20 Thread Johan Rydberg
I've seen some software packages and frameworks for GWT that is released under LGPL. Timefire's Chronoscope is one of those. This got me thing about how LGPL and other restrictive licenses work in relation to GWT. Normally LGPL allows you to link a library or framework with your commercial

[gwt-contrib] Re: GWT Incubator Status Update and Schedule

2010-01-20 Thread monkeyboy
Hello John. I'm glad to see that PagingScrollTable will make it to the GWT trunk. Even now it is a useful widget but I can't wait to see the final version. I would like to ask a few questions. I am sorry to hear that the incubator will be shut down. I was wandering what (if anything) will replace

[gwt-contrib] LayoutPanel Button in Mozilla

2010-01-20 Thread ggeorg
Hi, is there a workaround for : public void onModuleLoad() { LayoutPanel panel = new LayoutPanel(); panel.add(new Button(Hello!)); RootLayoutPanel.get().add(panel); } left: 0px; right: 0px; together do not work in Firefox 3.5.6 (top: 0px; bottom: 0px; work). There is also the

[gwt-contrib] [google-web-toolkit] r7434 committed - Create 1/19 snapshot branch as a straight copy from tr...@7432.

2010-01-20 Thread codesite-noreply
Revision: 7434 Author: b...@google.com Date: Wed Jan 20 07:00:41 2010 Log: Create 1/19 snapshot branch as a straight copy from tr...@7432. http://code.google.com/p/google-web-toolkit/source/detail?r=7434 Added: /branches/snapshot-2010.01.19-r7432 --

[gwt-contrib] [google-web-toolkit] r7435 committed - Add branch-info.txt file.

2010-01-20 Thread codesite-noreply
Revision: 7435 Author: b...@google.com Date: Wed Jan 20 07:07:54 2010 Log: Add branch-info.txt file. http://code.google.com/p/google-web-toolkit/source/detail?r=7435 Added: /branches/snapshot-2010.01.19-r7432/branch-info.txt === --- /dev/null +++

Re: [gwt-contrib] Re: GWT Incubator Status Update and Schedule

2010-01-20 Thread Ray Ryan
On Wed, Jan 20, 2010 at 6:52 AM, monkeyboy dilbert.elbo...@gmail.comwrote: Hello John. I'm glad to see that PagingScrollTable will make it to the GWT trunk. Even now it is a useful widget but I can't wait to see the final version. I would like to ask a few questions. I am sorry to hear that

Re: [gwt-contrib] LayoutPanel Button in Mozilla

2010-01-20 Thread Joel Webber
Agreed that this is a really irritating bug in Firefox. Have you tried w/h:100% just on the button itself? This is required for table and iframe on all browsers, though it's not baked into the Layout code by default, because it mis-lays-out slightly (pushes borders and margin off the edge). On

[gwt-contrib] Re: Comment on DataBackedWidgetsDesign in google-web-toolkit

2010-01-20 Thread codesite-noreply
Comment by dkimmig: I dont know whether this is the right time/place to add my comment, but I would like to point you guys in the direction of the Dojo Data Grid. I would love to be able to create a Databound-Grid somewhat similiar to the following way that is currently available in Dojo:

[gwt-contrib] Re: Comment on DataBackedWidgetsDesign in google-web-toolkit

2010-01-20 Thread codesite-noreply
Comment by dkimmig: I dont know whether this is the right time/place to add my comment, but I would like to point you guys in the direction of the Dojo Data Grid. I would love to be able to create a Databound-Grid somewhat similiar to the following way that is currently available in Dojo:

[gwt-contrib] Re: Comment on DataBackedWidgetsDesign in google-web-toolkit

2010-01-20 Thread codesite-noreply
Comment by dkimmig: I dont know whether this is the right time/place to add my comment, but I would like to point you guys in the direction of the Dojo Data Grid. I would love to be able to create a Databound-Grid somewhat similiar to the following way that is currently available in Dojo:

Re: [gwt-contrib] LayoutPanel Button in Mozilla

2010-01-20 Thread G. Georgopoulos
Hi, setWidth(100%) without any margin or border works I was hoping there would be a custom css property that could fix that. Thanks, George. On 01/20/2010 05:27 PM, Joel Webber wrote: Agreed that this is a really irritating bug in Firefox. Have you tried w/h:100% just on the button itself?

[gwt-contrib] Re: Comment on DataBackedWidgetsDesign in google-web-toolkit

2010-01-20 Thread codesite-noreply
Comment by dkimmig: I dont know whether this is the right time/place to add my comment, but I would like to point you guys in the direction of the Dojo Data Grid. I would love to be able to create a Databound-Grid somewhat similiar to the following way that is currently available in Dojo:

[gwt-contrib] Re: GWT Incubator Status Update and Schedule

2010-01-20 Thread monkeyboy
Then, how about a list of new features in the trunk since the last release. That way developers would know if they should become involved in the nontrivial (but not too hard) task of compiling GWT from source. I take the last comment back if such a list exists. I could not find it. Regards. On

Re: [gwt-contrib] Re: GWT Incubator Status Update and Schedule

2010-01-20 Thread John LaBanca
Libraries and widgets that we want to incubate will be moved into separate projects. Instead of downloading one incubator jar, you'll be able to (have to) download each project individually. Like Ray said, we're going to commit most new features directly to trunk, but we may still want to

[gwt-contrib] Re: JsStackEmulation leaves alone expressions invoked as functions

2010-01-20 Thread bobv
Can you explain why (A, B)() would have a different thisness than B() ? http://gwt-code-reviews.appspot.com/132815/diff/1/2 File dev/core/src/com/google/gwt/dev/js/JsStackEmulator.java (right): http://gwt-code-reviews.appspot.com/132815/diff/1/2#newcode719 Line 719: // Don't modify invokees,

[gwt-contrib] Re: GWT Incubator Status Update and Schedule

2010-01-20 Thread monkeyboy
Thank you John for your explanation. Now I understand the reason why you are shutting down the incubator. What I am suggesting is that developers should have a place where they can see what new features (libraries,...) are being developed and not to stumble upon this new features by chance (like I

[gwt-contrib] JreDocTool outputs to file instead of stdout

2010-01-20 Thread kplatfoot
Reviewers: Dan Rice, Description: JreDocTool generates the JRE emulation reference as an HTML fragment. It currently prints the HTML to stdout; this version writes to a file (specified by -out) instead. Please review this at http://gwt-code-reviews.appspot.com/130816 Affected files:

[gwt-contrib] Re: JsStackEmulation leaves alone expressions invoked as functions

2010-01-20 Thread spoon
Sorry, I wrote that up and then it disappeared during editing. The way I expected foo.bar() to work is that foo.bar would give you a closure specifying this=foo. JavaScript is full of creative approaches, however. The way it actually works is that JavaScript looks at the syntax of foo.bar and

[gwt-contrib] Re: JsStackEmulation leaves alone expressions invoked as functions

2010-01-20 Thread spoon
Sam, for whatever reason, the stack emulator adds a line-number marker for foo[bar] but not for foo.bar. At a guess, this is because with foo[bar], bar can potentially be a complicated multi-line expression. At any rate, it looks like a separate issue from issue 4512, though.

[gwt-contrib] SuggestBox loses focus when hovering over suggestions

2010-01-20 Thread jlabanca
Reviewers: jgw, Description: The SuggestBox loses focus when the mouse hovers over the list of suggestions because MenuBar steals keyboard focus on hover. This is particularly annoying if a user leaves the cursor just beneath the text box. As soon as the suggestions are shown, the text box

[gwt-contrib] [google-web-toolkit] r7436 committed - Merge r7343 from trunk. Has arrays implement Serializable....

2010-01-20 Thread codesite-noreply
Revision: 7436 Author: sp...@google.com Date: Wed Jan 20 12:24:08 2010 Log: Merge r7343 from trunk. Has arrays implement Serializable. svn merge --ignore-ancestry -c 7343 https://google-web-toolkit.googlecode.com/svn/trunk .

  1   2   >