App Engine authentication sign out after closing browser

2013-02-23 Thread nas
Hi, we have followed the App Engine authentication code snippets in the MobileWebApp sample application. Works fine, however, after closing the browser, the user has to be signed out. Using the Window.addCloseHandler(new CloseHandlerWindow() {...} and getting the

Re: TextBox - cannot select text with mouse?

2013-02-23 Thread Kody
It turned out that it was indeed a CSS issue: I did some -moz-user-select: -moz-none; to prevent doubleclick highlight issues on some of my components. And (of course) this would also affect the inputs. I excluded input elements now and everything works fine again. 2013/2/22 Jens

Re: GWT 2.4 Validation Tool not picking up @ExtraTypes on superclasses

2013-02-23 Thread Thomas Broyer
On Saturday, February 23, 2013 5:20:23 AM UTC+1, Bademus ᵗʰᵉ wrote: It seems that GenTool goes into infinite loop again Version: gwt 2.5.1-rc1 Code: public interface EntityBaseProxy extends EntityProxy { ... } @ExtraTypes(AuthorProxy.class) public interface UserProxy extends

Re: Is there any EditableTextBox?

2013-02-23 Thread Kody
Well, the quickest way I could think of using a single EditTextCell is the following: EditTextCell textEdit = new EditTextCell(); CellListString cellList = new CellListString(textEdit); ListString list = new ArrayListString(); list.add(single line field);

Re: Is there any EditableTextBox?

2013-02-23 Thread Thomas Broyer
OK; stop asking, stop thinking, start reading: http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/user/cellview/client/CellWidget.html On Saturday, February 23, 2013 12:55:13 PM UTC+1, membersound wrote: Well, the quickest way I could think of using a single

How to register doubleclick on EditTextCell?

2013-02-23 Thread membersound
Hi, in general a EditTextCell reponds to singleclick and goes into edit mode. How can I redirect and instead of singleclick expect a dblclick for edit mode? I tried extending the Cell and thought I could call super methodAbstractEditableCell(Strings...), but that does not work: class

Re: Is there any EditableTextBox?

2013-02-23 Thread membersound
Ok sorry, got it now: CellWidgetString cell = new CellWidgetString(new EditTextCell()); cell.setValue(test, true); panel.add(cell); Hope that's the correct way. Though you could just have told me: man use a CellWidget, add your EditTextCell and set the value. That's

Re: Avoiding DTOs in RPC

2013-02-23 Thread nalini . kar
The child DTO objects,the attributes lazily loaded are null.. when trying to access from the client side. On server side i use hibernate.. and there i could get the child objects.. can someone tell me.. how to get those data in client side.. I could get only the parent DTO data which is

Re: Is there any EditableTextBox?

2013-02-23 Thread Thomas Broyer
On Saturday, February 23, 2013 1:46:43 PM UTC+1, membersound wrote: Though you could just have told me: man use a CellWidget, add your EditTextCell and set the value. That's all... would have sped up my understanding. Something like Have you tried using the EditTextCell within a

Re: Is there any EditableTextBox?

2013-02-23 Thread Kody
I'm SO sorry :D, not my day... 2013/2/23 Thomas Broyer t.bro...@gmail.com On Saturday, February 23, 2013 1:46:43 PM UTC+1, membersound wrote: Though you could just have told me: man use a CellWidget, add your EditTextCell and set the value. That's all... would have sped up my

Re: GWT Maps api v3 Custom overlays

2013-02-23 Thread Hamza laamim
I have the same issue, Im stucked for 3 days, should I downgrade google maps version? On Friday, November 16, 2012 11:53:16 AM UTC, Giorgos Kritsotakis wrote: I have been able to draw the label, still I can't get the positioning right. This is the code in case someone wants to do

Re: How to draw horizontal line (equivalent HR tag) in GWT 2.3 ?

2013-02-23 Thread dominique calcinelli
First create the HTML hr/ tag : InlineHTML hrTag = new InlineHTML().wrap(Document.get().createHRElement()); Then use it as follows : myPanel.add(hrTag); -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from

Re: GWT Dashboard Development

2013-02-23 Thread Abhishek kumar Gupta
Hi All, I am using GWT 2.4 and still looking for a Dash board widget using GWT. Any help regarding to link or sample code will be very helpful. On Friday, 12 March 2010 16:58:21 UTC+5:30, Tapas Adhikary wrote: Hi All, I have a requirement of developing a Dash board using GWT. The

starter project missing .project file in Eclipse/GWT/XP-sp3

2013-02-23 Thread pingerofpong
I'm trying to get my hello world starter project (StockWatcher) working for the first time. The following is the message in the Working space error log. The project description file (.project) for 'Get Encrypted Key' is missing. This file contains important information about the project.

GWT Maps api v3 Custom overlays

2013-02-23 Thread Hamza laamim
to Implement GWT widgets using Google Maps v3 : import com.google.gwt.core.client.JavaScriptObject; import com.google.gwt.dom.client.Style; import com.google.gwt.maps.client.HasMap; import com.google.gwt.maps.client.base.LatLng; import com.google.gwt.maps.client.base.Point; import

Re: GWT Maps api v3 Custom overlays

2013-02-23 Thread Hamza laamim
Hi, You can try my solution, it works fine : import com.google.gwt.core.client.JavaScriptObject; import com.google.gwt.dom.client.Style; import com.google.gwt.maps.client.HasMap; import com.google.gwt.maps.client.base.LatLng; import com.google.gwt.maps.client.base.Point; import

Re: Activities Places, token question

2013-02-23 Thread jamo . afsco
All of these are good solutions. I used the ideas from this post and came up with my own solution public class AppPlace extends Place { // You can reference places without using the constructor ie. AppPlace.UnitCostPlace public static AppPlace UnitCostPlace = new

Re: gwt authorization in uibinder

2013-02-23 Thread Ritesh Ganatra
Hi, I have a similar requirement. Did anybody try this out? If so, can you please share some sample code. ? On Tuesday, 6 November 2012 20:30:59 UTC+5:30, Joseph Lust wrote: Like Ümit said, you can pass the authorizations provided by your Spring Security UserDetailsService to the frontend

Re: Problem in downloading Google Plugin for Eclipse

2013-02-23 Thread rajath s k
Hi Rajeev, Unfortunately my company firewall is too strong, I am unable to download even the .jar files directly. So i dont have eclipse plugin either way. :( Any other repositories from where I can download this. It would be good if i get links for Eclipse 4.2 (juno) Thanks in advance,

GWT new project not compiling server related .java to .class

2013-02-23 Thread rajath s k
Hello, When I compile my GWT project, compilation works fine without any error. Server side java files are not compiles to .class files, but Client side files are converted to .js . I am using Eclipse 4.2 (juno). Also creating a *New Web Application Project *from GDT Pulldown do create any

Re: GWT Maps api v3 Custom overlays

2013-02-23 Thread msa...@gmail.com
Try Sasha Maps: http://www.maryanovsky.com/sasha/maps/ It's a maps library written from scratch in GWT, so no issues like inconsistency between the underlying JavaScript API and the Java API that wraps it. On Thursday, November 15, 2012 3:27:30 PM UTC+4, Giorgos Kritsotakis wrote: Hello,

How do I add gwt 2.5.1-rc1 to eclipse?

2013-02-23 Thread pingerofpong
I have eclipse EE with gwt 2.5.0 (downloaded 2 days ago). Now I have downloaded gwt 2.5.1-rc1 and unzipped into into a folder (GWT updates). However, I have no clue as to how to incorporate this new download into eclipse. The Help Add new software appears (to me) to be geared toward full

Re: starter project missing .project file in Eclipse/GWT/XP-sp3

2013-02-23 Thread pingerofpong
*After rebuilding the project from scratch my problem vanished* On Saturday, February 23, 2013 9:24:44 AM UTC-7, pinger...@gmail.com wrote: I'm trying to get my hello world starter project (StockWatcher) working for the first time. The following is the message in the Working space

Re: How do I add gwt 2.5.1-rc1 to eclipse?

2013-02-23 Thread pingerofpong
*Answer is in the first few steps of StockWatcher instructions (see redline below):* 1. In the toolbar, click the New Web Application Project button [image: icon]. 2. Fill out the project details: 1. Enter the project name StockWatcher. 2. Enter the package