Re: appengine connected android project wizard example

2011-08-07 Thread Marcus Franzen
I have got the same problem, did you get it working? On 5 Aug., 00:48, RS rajeshs...@gmail.com wrote: GWT plugin for eclipse'sappengineconnectedandroidprojectwizard's output example used to work, doesn't work for a freshprojectany more. Well things do get generated and compile but C2DM

Re: Web Workers in GWT

2011-08-07 Thread OrNOt
I get a workaround but no idea if it makes right sense. Create a JSNI factory method to by pass the GWT like this private final native short[] createShortArray(int length) /*-{ var dataArray= new Array(length); return dataArray; }-*/;

Re: GWT + Guice + Shiro

2011-08-07 Thread objectuser
There's not much to do with Shiro in GWT, but I have a blog post about setting up Shiro with Guice on App Engine. Most of it should be relevant to you since I don't talk much about the datastore. One thing you should be able to do differently is to use the DefaultWebSessionManager, which

Re: RIP (Rich Internet Pages) instead RIA

2011-08-07 Thread dreamer
Thanks Karthik for the reply. Client side rendering (DOM manipulation) and Server side rendering (HTML manipulation), certainly these achieve rendering efficiency, but still programming approach is still same, that client side event programming. Server can get away from rendering totally,

Re: appengine connected android project wizard example

2011-08-07 Thread RS
Just many more fresh installs and fresh trials. Re-re-re requested C2DM for the same id and same/different package. (apparently package name filled in that form doesn't really matter) Got reply of acceptance. Waited few more days. No change. Registration from android device invariably fails.

Re: GWT + Guice + Shiro

2011-08-07 Thread Fabricio Pizzichillo
Thanks, I'll see it 2011/8/7 objectuser kevin.k.le...@gmail.com There's not much to do with Shiro in GWT, but I have a blog post about setting up Shiro with Guice on App Engine. Most of it should be relevant to you since I don't talk much about the datastore. One thing you should be able

GWeToloc = GWT + Html5 geolocation

2011-08-07 Thread Francois Wauquier
Hi I am pleased to share this Open Source project http://code.google.com/p/gwetoloc/ It wraps the latitude, longitude and accuracy of the getCurrentPosition API. Html5 Rocks ! Francois 'wokier' Wauquier -- You received this message because you are subscribed to the Google Groups Google Web

gwt java project vs web application project / MVP

2011-08-07 Thread cri
There are two ways (at least) to start a new gwt application project: 1) New/Google/Web Application Project (and) 2) New/WindowBuilder/GWT Designer/Model/GWT Java Project I like (2) because it supports initializing the project to be an MVP project. However, I'm tempted to favor (1) because I

component for editing an image

2011-08-07 Thread moa-code
Hi, I want a component that I can use to allow a user to draw a box or circle over an image they have previously uploaded. I then want the component to message the circle or squares dimensions back to the server, so the server can either perform a crop on image to the size of the square, or

change css dynamically via javascript?

2011-08-07 Thread Elhanan
hi.. is it possible to do the following create custom annotions on a class and on it's members like so @Permission() public class Foo{ @Permission() String name; } have the gwt compiler convert said annotations into custom attributes on each member's dom (if that's not possible i can always use

Re: no run as GWT application in Eclipse 3.7 (indigo)

2011-08-07 Thread Eric Clayberg
Run as Web Application is newer and up-to-date while Run as GWT application is older and obsolete. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: no run as GWT application in Eclipse 3.7 (indigo)

2011-08-07 Thread Alain Ekambi
Well i did like the old one. :) Will miss it 2011/8/7 Eric Clayberg clayb...@google.com Run as Web Application is newer and up-to-date while Run as GWT application is older and obsolete. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

wHOWTO reflect changes in a Celltable cell

2011-08-07 Thread Jeff Chimene
Hi: I have a situation where I want to edit a Celltable Cell in its FieldUpdater() method. I'd like the user to see the value after the edits are applied. The use case is the situation where the Context key value is in the cell's value: Context.key = 1, Cell value = 1,2 in this case, I want

Re: Compile Error - Method Not Implemented

2011-08-07 Thread Nick Apperley
Made a silly mistake of having the interface extend EventListener instead of having the class implement EventListener. In the class the required method was already implemented. With that corrected the compile works without any errors. Would be good if the Console window had more meaningful output

Re: RequestFactory with Collections of ValueProxy in a ValueProxy

2011-08-07 Thread Daghan
Hi Alexandre, Thanks for posting this link. I've wasted my whole weekend on this issue -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: scrolling in iPad

2011-08-07 Thread Gal Dolber
ScrollPanel do work. What version of gwt are you using? On Sat, Aug 6, 2011 at 10:17 PM, macagain rgk...@gmail.com wrote: What's the best or right way to do gwt apps that scroll properly on the iPad? I.e. apps that are bigger than the browser window. Scrollpanel does seem to work either.

Aw: scrolling in iPad

2011-08-07 Thread Jens
iOS 5 will support a new CSS property called -webkit-overflow-scrolling. When setting the value touch and using it together with overflow:scroll you get native iOS scrolling on elements. This will be the best solution for iOS 5. For older iOS versions you can use ScrollPanel which supports

Re: scrolling in iPad

2011-08-07 Thread redjhawk
To let a user do scrolling, you have to use a scrollpanel with any widget with a size bigger than the parent scrollpanel. I use a 'personalized' ScrollPanel with touch support (TouchScrollPanel, at the end of this mail). That panel must fit the mobile screen. Then, inside that panel, you have to

Re: Eclipse Analyzing Sources Slow

2011-08-07 Thread Alex Luya
After removing all WindowBuilder related packages,everything works fine. On Wed, 2011-08-03 at 21:52 -0700, gutto wrote: Hmm, all I can suggest is that you try the XML Catalog workaround. On Jul 31, 12:22 am, Alex Luya alexander.l...@gmail.com wrote: I have installed this one,but problem

Re: no run as GWT application in Eclipse 3.7 (indigo)

2011-08-07 Thread Warren Tang
Then it shall be removed to avoid confusion. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/CnPon4EboFkJ. To post to this group, send email to

Nasty Long Standing Keyboard Scrolling Bug

2011-08-07 Thread camerojo
Back in May I posted a bug report for this but it does not seem to be getting the attention it deserves so I have uploaded a simple app that demonstrates the bug - see http://keybdscrollbug.appspot.com/ The bug was reported as issue 6383 - see

Offline Google Web Toolkit

2011-08-07 Thread santosh.t
Good Morning all, Hi this is Santosh from India-Hyderabad, Can i draw an organizational hierarchy chart using Google Web Toolkit in my jsp page which has to run in the intranet environment. Because at Client place there is no internet accessible, as our application is secure and will run in

GWT CELLTABLE:How to get Updated DataProviderList after changes in any cell value ?

2011-08-07 Thread vaibhav bhalke
Hi, GWT CELLTABLE:How to get Updated DataProviderList after changes in any cell value ? Class RecordInfo{ boolean isCellUpdated; String oldValue; String newValue; // getters and setters ... } /** * The provider that holds the list of RecordInfo . */ private

Re: GWT CELLTABLE:How to get Updated DataProviderList after changes in any cell value ?

2011-08-07 Thread Ashwin Desikan
you have to define fieldUpdaters for each of your cell. You can do this as part of initializing the CellTable. So as an when you update a cell, it would automatically update the corresponding record in the backinglist ~Ashwin On Monday 08 August 2011 11:18 AM, vaibhav bhalke wrote: Hi,

GWT CELLTABLE :How to handle event on checkbox header like gmail Inbox?.

2011-08-07 Thread vaibhav bhalke
Hi, How to handling event on checkbox header ? i.e After selection of headerCheckBox only records present in page should be selected. like Gmail we select headerCheckBox to do certain action. ColumnRecordInfo, Boolean checkColumn = new ColumnRecordInfo, Boolean( new

[gwt-contrib] [google-web-toolkit] r10505 committed - Public:...

2011-08-07 Thread codesite-noreply
Revision: 10505 Author: mrruss...@google.com Date: Sun Aug 7 15:09:29 2011 Log: Public: Tagging the 2.4.0 release http://code.google.com/p/google-web-toolkit/source/detail?r=10505 Added: /tags/2.4.0 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors