Re: Uploading a file 1MB

2012-03-08 Thread kim young ill
need to be more specific what your BlobstoreService is doing/used library On Wed, Mar 7, 2012 at 4:01 PM, learning coding learning.codin...@gmail.com wrote: Hi all , I have to make webapplication using java, I have to upload a file which is bigger then 1MB . Actually i need the

Re: Uploading a file 1MB

2012-03-08 Thread learning coding
Hi Kim I am very new to GWT . I have to make a web application which uploads the file. The file can be of type .doc , .txt The file size can be more then 1 MB. I dont know how to do it. Some body suggested me to use BolbStore. After suggesting he didnt replied once also. files used for

RequestFactory and offline clients

2012-03-08 Thread Gilad Egozi
Hello, I'm trying to create an application which is able to work even when network is down. The idea is to store data returned from RequestFactory on the localStorage, and to use localStorage when network isn't available. My problem - I'm not sure exactly how to differentiate between server

Implementing Places that share all but have different prefix

2012-03-08 Thread tanteanni
Sometimes i have two places that differ only in thier prefix. For example a SelectionPlace and a ResultOfSelectionPlace. So both places share all code but differ in @Prefix(value...). At the moment i implemented this by using an abstract class but i have to copy the code of the tokenizer to get

Re: RequestFactory and offline clients

2012-03-08 Thread Thomas Broyer
Throwing out ideas: - you can tell network errors from server errors at the RequestTransport level: server errors go through response received, while network errors go through onError. If you can work offline thogh, I'm not sure you should differentiate them: Receiver#onFailure

Re: Implementing Places that share all but have different prefix

2012-03-08 Thread Thomas Broyer
On Thursday, March 8, 2012 12:37:19 PM UTC+1, tanteanni wrote: Sometimes i have two places that differ only in thier prefix. For example a SelectionPlace and a ResultOfSelectionPlace. So both places share all code but differ in @Prefix(value...). At the moment i implemented this by using

Using EMF Model in GWT Client Side

2012-03-08 Thread Soeren B
Hi, I'm currently working with EMF and GWT. I created my own EMF Model and generated the model code (Runtime Platform: GWT is set). This Project got exported as JAR File and imported into my GWT Project. The Building Path configuration was made. Now I am trying to use this model on server- and

About GWT RPC Serializable object

2012-03-08 Thread HeyHei
if i create a service which return a Serializable object. Is the Serializable object only will load when client side (javascript) request a call and then receive response(include the Serializable object)? thanks -- You received this message because you are subscribed to the Google Groups Google

Google Groups Management IN GWT

2012-03-08 Thread Wayne Rademeyer
Is it possible to manage Google groups from GWT or do i need to use some or other API -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Unable to follow instructions on http://code.google.com/webtoolkit/doc/latest/tutorial/roo-sts.html

2012-03-08 Thread fortm
I installed latest 2.9 STS and updated it, then I created a directory in Spring-Roo installation directory by name expenses. Started ROO and then ran the script from samples/expenses.roo from command line. When I run mvn - version, it shows latest path which I set in environment same as

Re: fileupload in gwt

2012-03-08 Thread kim young ill
anyone know how to handle a cancel-upload case ? i guess if the client just cut the line. server will get IOException can handle that. what about clientside with FileUpload widget (or i guess Formpanel should do sth here )? thanx On Wed, Feb 15, 2012 at 5:56 AM, Amith K Bharathan

Re: Google Groups Management IN GWT

2012-03-08 Thread Williame
Google apps api's. Client libs for Java, .NET, etc.. http://code.google.com/googleapps/ On Thursday, March 8, 2012 4:29:11 AM UTC-6, Wayne Rademeyer wrote: Is it possible to manage Google groups from GWT or do i need to use some or other API -- You received this message because you are

Re: Implementing Places that share all but have different prefix

2012-03-08 Thread Thomas Broyer
On Thursday, March 8, 2012 3:28:18 PM UTC+1, tanteanni wrote: thx thomas (you seem to answer all ap questions of the world) so you mean i have to provide an implementation (rather then an extension) of PlaceHistoryMapper? will @WithTokenizers work on that? Or do i have to implement all

Re: Hibernate ClassCastException in GWT hosted mode only

2012-03-08 Thread Lukasz Plotnicki
Does anybody know a workaround (other then rollback to and old hibernate version) for this issue? Am Montag, 20. Februar 2012 07:58:57 UTC+1 schrieb Artem V. Navrotskiy: This is Hibernate 4.0.0+ bug: https://hibernate.onjira.com/browse/HHH-7084 -- You received this message because you are

Re: Implementing Places that share all but have different prefix

2012-03-08 Thread tanteanni
thx again - didn't know about that. (i can't shake the feeling that google has some good engineers) On Thursday, 8 March 2012 15:50:01 UTC+1, Thomas Broyer wrote: On Thursday, March 8, 2012 3:28:18 PM UTC+1, tanteanni wrote: thx thomas (you seem to answer all ap questions of the world) so

Re: How to hide a column in the GWT DataGrid Widget

2012-03-08 Thread Patrick Tucker
Maybe try setting the columns value to empty when the width is 0? Something like this? Column... itemColumn = new Column...(new TheCell()) { @Override public Object getValue (Object object) { if (theDataGrid.getColumnWidth(this) == 0) { return ;

Using CssResource @def inside some css property with parenthesis not working

2012-03-08 Thread Shaun Tarves
Hi - I'm having trouble using a defined constant inside of a css property that has its own parenthetical reference. What I mean is: @def HEADER_ROW_BACKGROUND_COLOR #b2bbc9; This works: background: HEADER_ROW_BACKGROUND_COLOR; This does not work. background-image: linear-gradient(top,

Re: Supported Browser Versions

2012-03-08 Thread Tony Edgin
Your right. The list is out of date. AFAIK, in works with the latest version of every browser. I think Google is making a mistake by not keep at least this documentation up to date. A software team probably won't use a GWT if the members don't think it supports their target web browsers. This

Activity Places | Nested activities

2012-03-08 Thread Adolfo Panizo Touzon
Hi all, I'm going to start a new app and I'm interested in using activities and places. I've read the articles of the official page of gwt devguide, the Thomas Broyer's posts, some questions in Stack Overflow, and I think I have a general idea. I'm sure when I start to coding I'll understand

I need some clarification on servlets and modules

2012-03-08 Thread Bucky
I'm trying to created several urls for different types of users to access my app. For example, I'd like to break my app into the following urls: myapp.appspot.com/admin myapp.appspot.com/instructor myapp.appspot.com/student I have portions of the app running (i.e. admin) which I created by

Re: Using CssResource @def inside some css property with parenthesis not working

2012-03-08 Thread Thomas Broyer
This is because the gradient functions are not valid CSS2, and GWT uses a CSS2 parser for CssResources. See http://code.google.com/p/google-web-toolkit/issues/detail?id=5771 On Thursday, March 8, 2012 4:43:52 PM UTC+1, Shaun Tarves wrote: Hi - I'm having trouble using a defined constant

Re: Using CssResource @def inside some css property with parenthesis not working

2012-03-08 Thread Shaun Tarves
But using them without the constant definitions works fine. If I put in explicit colors everywhere, my gradients show up. - Shaun On Mar 8, 2012, at 12:25 PM, Thomas Broyer t.bro...@gmail.com wrote: This is because the gradient functions are not valid CSS2, and GWT uses a CSS2 parser for

Re: Supported Browser Versions

2012-03-08 Thread Thomas Broyer
On Thursday, March 8, 2012 5:25:40 PM UTC+1, Tony Edgin wrote: Your right. The list is out of date. AFAIK, in works with the latest version of every browser. I think Google is making a mistake by not keep at least this documentation up to date. A software team probably won't use a GWT

ListEditor Help

2012-03-08 Thread Lars
So trying to wrap my head around the Editor Framework and ListEditor in particular... I have a class that basically has 1 property, an ArrayList: public class ArticlePaginator implements IterableArticlePage { ArrayListArticlePage articlePages = new ArrayListArticlePage(); public

Re: GWT 2.4 ERROR WITH IE8

2012-03-08 Thread bond
Someone can help me? Thanks Il giorno mercoledì 7 marzo 2012 18:19:21 UTC+1, bond ha scritto: Hi, I wrote a web application, some like an ecommerce. It works fine with FF,Chrome,IE9,Safari but with IE8 I've several errors :-( For example when I load a page (see attachment) I have this

Using Anchor/Hyperlink in Cell Widget constructs

2012-03-08 Thread Shaun Tarves
It looks like Anchors/Hyperlinks are the most full-featured and link like way to provide user navigation (right-click context menu support, etc.) Is there a way to integrate these with the notion of CellLists or CellTrees? For example, if I wanted each cell to be a GWT Anchor (or at least

Chrome not properly rendering HeaderPanel as of yesterday's update?

2012-03-08 Thread Eric Andresen
My application has a HeaderPanel that has suddenly stopped working in Chrome (32-bit XP version 19.0.1061.1). The GWT code hasn't changed, and IE8 and FireFox both still work. The symptom is that the header and footer appear properly, but the content has its height set to 0px so it doesn't

Re: Activity Places | Nested activities

2012-03-08 Thread Jesse Hutton
When using Activities and Places, you don't get rid of the notion of presenters. In fact, I often pass presenters to my activities, which can of course have nested presenters. IMO, activities and places mostly applies to pages and page flow (and encapsulating page specific application data and

GWT Spring

2012-03-08 Thread Akram Moncer
hello everybody; can some one help me and give me how can i create webapp with spring framwork on back-end and GWT on front-end ? -- Akram MONCER Personne -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Integrating GWT with Google Docs

2012-03-08 Thread Edwin Salguero
Hello I want to embed api Google Docs with my application GWT On my server I have loaded many files *. xls and *. xlsx but now my client wants to read those files directly from my GWT web-based system without downloading the files, My idea is to integrate APIs Google Docs in a DialogBox so that

Re: GWT Spring

2012-03-08 Thread Xybrek
On 3/8/2012 11:33 PM, Akram Moncer wrote: hello everybody; can some one help me and give me how can i create webapp with spring framwork on back-end and GWT on front-end ? -- Akram MONCER Personne -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: GWT Spring

2012-03-08 Thread Akram Moncer
think you very much Le 9 mars 2012 04:33, Xybrek xyb...@gmail.com a écrit : On 3/8/2012 11:33 PM, Akram Moncer wrote: hello everybody; can some one help me and give me how can i create webapp with spring framwork on back-end and GWT on front-end ? -- Akram MONCER Personne -- You

[gwt-contrib] Re: Permutation Specific SymbolMap (issue1652803)

2012-03-08 Thread acleung
http://gwt-code-reviews.appspot.com/1652803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Permutation Specific SymbolMap (issue1652803)

2012-03-08 Thread cromwellian
LGTM, although you may want to add a !-- -- doc section in CompilerParams prior to the property to explain what it is doing (turn off symbol map, and therefore it disables StackTraceDeobfuscation in the logging API) http://gwt-code-reviews.appspot.com/1652803/ --

[gwt-contrib] Call for forgotten patches

2012-03-08 Thread Ray Cromwell
Greetings Contributors, First an apology, I realize many of you have put a lot of work into contributing to GWT, and we haven't exactly been speedy in picking these up. There's been turnover and reorgs, and some of the original code reviewers have left the team, or even left Google, and so some

[gwt-contrib] Call for forgotten patches

2012-03-08 Thread Bradley Gottfried
http://gwt-code-reviews.appspot.com/1634804/ Thanks, Bradley Gottfried -- http://groups.google.com/group/Google-Web-Toolkit-Contributors