Stange error with Chrome hosted mode

2011-10-04 Thread mjfan80
Hi to all There was and old topic on that error, but i can't find it anymore... i found it on google but the page doesn't exist either in the google cache. I'm tryng to use the hosted mode in chrome too... but i can't. I can use it on IE and Firefox (in this day i can't with firefox, because the

Re: iframe with GWT

2011-10-04 Thread Jim Douglas
http://google-web-toolkit.googlecode.com/svn/javadoc/2.4/com/google/gwt/user/client/ui/Frame.html On Oct 4, 10:05 pm, CSchulz wrote: > I'm wondering how I can create and iframe with GWT and inject some > " body{background-color: red;} " type > of stuff into the head and then inject a bunch of div

iframe with GWT

2011-10-04 Thread CSchulz
I'm wondering how I can create and iframe with GWT and inject some " body{background-color: red;} " type of stuff into the head and then inject a bunch of divs into the body. I don't need to be able to link to them at all or apply any handlers, so I would think this would be pretty easy, but I have

Re: Permutation, code splitting and deferred property

2011-10-04 Thread David Chandler
Hi Pierre, Response from Ray Cromwell on our internal mailing list: Could this be a result of the new PersistentUnitCache / generator caching stuff? Typically in GWT, people have two different Generator implementations, so there would be a MyGeneratorFirefoxImpl and a MyGeneratorDefaultImpl. Eac

Re: Create custom callbacks to achieve synchronous code execution

2011-10-04 Thread Jens
What I sometimes do is to provide a callback parameter for methods that do async requests if I want to be notified once the async request finishes. So basically: void executeAllTheseStuff() { doAsyncStuff(new Callback() { @Override public void onSuccess() { doStuffWhenAsy

Re: I need suggestions for compositeCell selection

2011-10-04 Thread George Agiasoglou
MultiselectionModel means that more than one item on your cellList can be selected. Is this what you want? I have tackled a similar problem, meaning that my compsiteCell consists of a couple of other cells and each is performing its own action when clicked. Have a look at http://gwt.google.co

Re: Firefox v. Dev Plugin

2011-10-04 Thread Gregory Dougherty
Well, good luck. I've gone over to the Firefox forums and joined in the "why the heck are you doing this" chorus, FWIW. Greg On Oct 3, 7:09 pm, Alan Leung wrote: > > What would be involved in automating the plugin build process?  Are we > > talking Maven + Ant + shell scripting? > > Although th

Re: Using Multiple Panels

2011-10-04 Thread paschn
It still doesn't work. The problem it that between the div elements in the HTML file I have some HTML elements (that cannot be implemented with GWT, like a captcha field), so I have to make those two panels (mainPanel1 and mainPanel2) work independently in 2 different RootPanels. On 4 Οκτ, 14:04,

Re: Using window.open(), Chrome and extensions in GWT project..

2011-10-04 Thread Bruno Sandivilli
Adding another question to this: How can i get the handler for this opened window? 2011/10/4 Ben > As a part of a larger GWT project we have some native JavaScript in > which we use window.open to create a new Chrome instance. So far so > good. But we have some Chrome extensions (e.g., a screens

Re: problem with upload/download of file

2011-10-04 Thread Bruno Sandivilli
Waht is the response you see in firebug? If its ok(e.g.: 200), it reached the servlet. 2011/10/4 Rodrigue Lagoue > Hi All, > > > I have a problem with the use of the FileUpload widget in my current > project. When submit the form, the request is correctly sent to the > server (I can see it with

problem with upload/download of file

2011-10-04 Thread Rodrigue Lagoue
Hi All, I have a problem with the use of the FileUpload widget in my current project. When submit the form, the request is correctly sent to the server (I can see it with the help of firebug), but the corresponding servlet is never called. It seems like the http post request goes and pends aroun

Re: How to intercept GWT RPC

2011-10-04 Thread Bruno Sandivilli
You dont need this, just use: HttpServletRequest request = this.getThreadLocalRequest(); 2011/10/4 Costa > Hi, > > I would like to encode information of the current session, such as the > session Id, current user for each GWT RPC call, how can I add this in > the RPC request and response? > >

Re: GWT Community size ?

2011-10-04 Thread Jonathan Aubuchon
Thank you David On 3 oct, 11:58, David Chandler wrote: > Hi Jonathan, > > There are a couple ways to gauge this. You can see the number of times each > version of GWT is downloaded here: > > http://code.google.com/p/google-web-toolkit/downloads/list > > This does not include downloads from Maven

Activities&Places with GXT

2011-10-04 Thread Jonathan Aubuchon
I tried to use Activies&Places with GXT 2.2.5 and it failed . PlacesController.goTo(..) crashed the application when the view contained a GXT FormPanel The problem is from me or we can't use Places with GXT for the moment? We have to wait for the GXT 3.0 version? Thank you -- Jonathan Aubucho

Using window.open(), Chrome and extensions in GWT project..

2011-10-04 Thread Ben
As a part of a larger GWT project we have some native JavaScript in which we use window.open to create a new Chrome instance. So far so good. But we have some Chrome extensions (e.g., a screenshot extension - 'Awesome Screenshot', or 'Screen capture (by Google)') that we want available to this new

Re: I made a few simple screencast tutorials.

2011-10-04 Thread Brandon Donnelson
Thank you. :) Have a good day, Brandon Donnelson c.gawkat.com On Tue, Oct 4, 2011 at 12:37 AM, Z.A Jafari wrote: > > cheers mate for these tutorial,keep up the good work,it is very helpful > > On 29 September 2011 16:54, Brandon Donnelson wrote: > >> Thanks for the positive feedback. :) I'm

Re: [SOLUTION] Re: Create custom callbacks to achieve synchronous code execution

2011-10-04 Thread Alexander Orlov
On Tue, Oct 4, 2011 at 7:53 PM, Jens wrote: > Yeah ok maybe I missunderstood your solution example. But your general idea > is correct: > > 1.) do the first async request > 2.) in the callbacks onSuccess method of the first request execute the > second async request. > > So basically you are chai

I need suggestions for compositeCell selection

2011-10-04 Thread frog
I have a cellList of composite cells. Each cell consist of an imageCell and a checkBoxCell that depends on selection and doesn't handle selection. I have custom SelectionEventManager that selects the composite cell if user clicks on the imageCell or the checkBox. Now I want to extend it to have 3

Re: Create custom callbacks to achieve synchronous code execution

2011-10-04 Thread Alexander Orlov
On Tue, Oct 4, 2011 at 6:53 PM, Ashton Thomas wrote: > My understanding is that the simple solution below would work. Is this > correct? > > service.getStuff(new AsyncCallback(){ > public void onSuccess(result){ > updateStuff(result); > } > } > > public void updateStuff(ThisThat obj){ >

Re: [SOLUTION] Re: Create custom callbacks to achieve synchronous code execution

2011-10-04 Thread Jens
Yeah ok maybe I missunderstood your solution example. But your general idea is correct: 1.) do the first async request 2.) in the callbacks onSuccess method of the first request execute the second async request. So basically you are chaining async requests. Thats the way to go, or try to fix y

How do I develop a large GWT application with generally correct architecture?

2011-10-04 Thread Анатолий Ручка
I already ask questions here http://stackoverflow.com/questions/7638524/how-do-i-develop-a-large-gwt-application-with-generally-correct-architecture/7638746#7638746 that was very awful, but i need answers Exists video lessons about mvp arhitecture? http://habrahabr.ru/blogs/gwt/113121/ http://bl

Re: Inviting you to NEXT interfaces (GWT Touch framework)

2011-10-04 Thread Atanas Roussev
Thank you all. Feedback seems positive. Re Android theme.It's coming soon. Contributions are more than welcome ;) -atanas http://nextinterfaces.com On Oct 4, 7:08 am, Alfredo Quiroga-Villamil wrote: > Well done, looks really nice and the API seems very intuitive. > > Nice work. > > On Tue, Oct 4

Re: problem with async sequence...

2011-10-04 Thread Ashton Thomas
Sounds like the same issue here: https://groups.google.com/forum/#!topic/google-web-toolkit/CByX2YBQwek -- 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-t

Re: Create custom callbacks to achieve synchronous code execution

2011-10-04 Thread Ashton Thomas
My understanding is that the simple solution below would work. Is this correct? service.getStuff(new AsyncCallback(){ public void onSuccess(result){ updateStuff(result); } } public void updateStuff(ThisThat obj){ //execute A //execute B } -- You received this message because you ar

problem with async sequence...

2011-10-04 Thread Navindian
I have the following code, operation2() is not showing correct value properly unless i make window alert . operation0(,(*new* AsyncCallback(){ *public* *void* onFailure(Throwable caught) {} <%7B%7D@Override> *public* *void* onSuccess() {operation1();}})); Window.*alert*('halt'); operation2

Re: [SOLUTION] Re: Create custom callbacks to achieve synchronous code execution

2011-10-04 Thread Alexander Orlov
On Tue, Oct 4, 2011 at 6:37 PM, Jens wrote: > You shouldn't use this solution. GWT.runAsync is used to create a code > split point and not to execute things asynchronously. I don't want to execute things asynchronously. I want to execute things * synchronously*. > As far as I know these code

Re: [SOLUTION] Re: Create custom callbacks to achieve synchronous code execution

2011-10-04 Thread Jens
You shouldn't use this solution. GWT.runAsync is used to create a code split point and not to execute things asynchronously. As far as I know these code split points act synchronously in dev mode but asynchronous in production/compiled mode. I think this is because in dev mode there are no .js

Re: Create custom callbacks to achieve synchronous code execution

2011-10-04 Thread Alexander Orlov
On Tue, Oct 4, 2011 at 5:59 PM, Ashton Thomas wrote: > Hey Alexander, I am not sure you are going about this the correct way. Dev > Mode is NOT synchronous and it functions just like production mode. There is > another reason why you are getting your results. It may be because the > requests take

Re: Create custom callbacks to achieve synchronous code execution

2011-10-04 Thread Ashton Thomas
Hey Alexander, I am not sure you are going about this the correct way. Dev Mode is NOT synchronous and it functions just like production mode. There is another reason why you are getting your results. It may be because the requests take longer in Dev Mode and your client has time to send the re

Missing Browser Scroll Bars

2011-10-04 Thread walker1c
Hi, I'm working on an application built with Uibinder. The screen consists mostly of a DeckPanel, each visible surface of which contains an HTML table with Uibinder widgets in each cell. Most of the child Uibinder widgets consist of a Grid, and perhaps one or two buttons. The Grids are genera

[SOLUTION] Re: Create custom callbacks to achieve synchronous code execution

2011-10-04 Thread Alexander Orlov
Use code like: RunAsyncCallback getResourceItems = new RunAsyncCallback() { @Override public void onFailure(Throwable reason) { GWT.log(reason.getMessage()); } @Override public void onSuccess() { System.out.println("THIRD");

Re: Inviting you to NEXT interfaces (GWT Touch framework)

2011-10-04 Thread toont...@googlemail.com
On my Android (2.2 - Dell Streak) when I visit the URL I get Data connectivity problem The page contains too many server redirects. -- 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-toolkit@go

Saving a file under my GWT project's '/war' path - Security Exception

2011-10-04 Thread Berkan
Hello, I am designing a web application using GWT. I use an OWL ontology, stored under the 'war/WEB-INF/Ontology' path in my war folder. I can access this ontology through my UI on the clientside wihtout any problems. When a user modifies the details of an ontology entry through my UI and clicks

Re: GWT4Touch Official Release!

2011-10-04 Thread Alfredo Quiroga-Villamil
Moved the thread to our forum. http://www.emitrom.com/node/41 We'll look into it. Regards, Alfredo On Tue, Oct 4, 2011 at 1:22 AM, Konstantin Zolotarev < konstantin.zolota...@gmail.com> wrote: > A little bug: > > https://picasaweb.google.com/lh/photo/8z7AN3yoHVQFfH5c9KyHzUPaUYuYPNK_IbcBfo3gU0

Re: Inviting you to NEXT interfaces (GWT Touch framework)

2011-10-04 Thread Alfredo Quiroga-Villamil
Well done, looks really nice and the API seems very intuitive. Nice work. On Tue, Oct 4, 2011 at 1:07 AM, Atanas Roussev wrote: > Hi Folks, > > I happy to announce the creation of NEXT interfaces > http://nextinterfaces.com > > NEXT is an open source GWT/HTML5 framework with focus on Native and

Re: Inviting you to NEXT interfaces (GWT Touch framework)

2011-10-04 Thread Gal Dolber
Looks and works amazing! good job! On Tue, Oct 4, 2011 at 9:38 AM, Thomas Broyer wrote: > Er, "native looking"? really? looks to me rather like iPhone-looking. > > (I'm by no mean criticizing your technical work, it's just that I launched > the demo on my Android and it doesn't look "native" at

Re: Inviting you to NEXT interfaces (GWT Touch framework)

2011-10-04 Thread Thomas Broyer
Er, "native looking"? really? looks to me rather like iPhone-looking. (I'm by no mean criticizing your technical work, it's just that I launched the demo on my Android and it doesn't look "native" at all; same in the blackberry picture on the website) Other than that, it looks really good and i

Re: GWT Developer Plugin for Firefox 7

2011-10-04 Thread mjfan80
Yes there's still problem with firefox 7.01 The worst thik is that i can't make work the plugin with chrome too On 3 Ott, 15:48, Kees de Kooter wrote: > This plugin is failing on FF 7.0.1: "Sorry, the GWT Developer Plugin only > supports Firefox 3.0 - 6.0 at present "

Re: Developers, please don't ignore reported GWT issues.

2011-10-04 Thread Juan Pablo Gardella
+1 2011/10/4 Stanislav Ievlev > +1 > 04.10.2011 12:40 пользователь "Martin Ždila" написал: > > > Hello > > > > GWT is a perfect toolkit but there are still many small but frustrating > > issues open in bug-tracker and GWT developer team seems to be ignoring > them > > for many months or even y

The data in Sub-Editors not saved in the database with using Editors and RequestFactory

2011-10-04 Thread Andrey Kadatsky
Hi all! I am beginning programmer, learning GWT, the first link on request "GWT forum" led here, so I decided to ask here. English is not my native language, but I hope that you will understand the essence. Individually each simple Editor successfully stored in the database: (http://pastebin.com/S2

PagingScrollTable Javascript error

2011-10-04 Thread Sumeet Chakraborty
Hello Techies, I am a newbie to GWT and have recently started exploring the GWT API's. I am running into a problem with the PagingScrollTable in which If I select rows in quick succession, it throws the javascript error. The PagingScrollTable which I am using has a RowSelectionHandler method defin

Re: Developers, please don't ignore reported GWT issues.

2011-10-04 Thread Stanislav Ievlev
+1 04.10.2011 12:40 пользователь "Martin Ždila" написал: > Hello > > GWT is a perfect toolkit but there are still many small but frustrating > issues open in bug-tracker and GWT developer team seems to be ignoring them > for many months or even years. GWT issues seems not to be maintained very >

Re: Inviting you to NEXT interfaces (GWT Touch framework)

2011-10-04 Thread Alain Ekambi
Pretty neat :) . Keep up the good work 2011/10/4 Atanas Roussev > Hi Folks, > > I happy to announce the creation of NEXT interfaces > http://nextinterfaces.com > > NEXT is an open source GWT/HTML5 framework with focus on Native and > Astonishing Looking web interfaces for smartphones and tablets

GWT Request Factory JSON specification, Delphi integration

2011-10-04 Thread Boris
I really like GWT and RF. I would like to connect a client Delphi application with Hibernate, but I haven't found a good way yet. I am thinking of using Request Factory. So basically Delphi app has to parse and build JSON responses, requests. I have set up a java app with hibernate, Request factory

Re: I made a few simple screencast tutorials.

2011-10-04 Thread Z.A Jafari
cheers mate for these tutorial,keep up the good work,it is very helpful On 29 September 2011 16:54, Brandon Donnelson wrote: > Thanks for the positive feedback. :) I'm happy you liked it. I've got a > list I'm aiming to make and appreciate letting me know. I've added client > bundle and MVP patte

GWT RequestFactory validation tool and AOP-enabled code

2011-10-04 Thread loki2302
I have all my domain classes heavily using AspectJ to introduce new methods, implement interfaces, intercept some calls, etc. When I run RF validation tool, it fails, with errors like "there's no method called qwerty". Sure, there's no method with such name, it gets introduced by AspectJ. Are ther

Re: HasEditorErrors and HasDataEditor

2011-10-04 Thread WERDEX
Hi, Are there any updates on this? Is it possible to get CellTable working with HasEditorErrors? -- 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/

Inviting you to NEXT interfaces (GWT Touch framework)

2011-10-04 Thread Atanas Roussev
Hi Folks, I happy to announce the creation of NEXT interfaces http://nextinterfaces.com NEXT is an open source GWT/HTML5 framework with focus on Native and Astonishing Looking web interfaces for smartphones and tablets(soon). Feel free to fork it on GitHub and contribute. NEXT is based on http://

How to intercept GWT RPC

2011-10-04 Thread Costa
Hi, I would like to encode information of the current session, such as the session Id, current user for each GWT RPC call, how can I add this in the RPC request and response? Thanks, Costa -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.

Re: Is there a way to use SplitLayoutPanel/DockLayoutPanel in panel other than RootLayoutPanel e.g RootPanel or SimplePanel

2011-10-04 Thread saurabh saurabh
I think I got it SimpleLayoutPanel or anyone that implements 'ProvidesResize' can work. -- 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-toolkit@googlegroups.com. To unsubscribe from this grou

Re: Using Multiple Panels

2011-10-04 Thread Sudhakar Abraham
Wrap your VerticalPanel1, VerticalPanel 2 into a HorizontalPanel . Finally, add your HorizontalPanel into your RootLayoutPanel. Set the size for HorizontalPanel in gwt unit. //example code. public class MyProject implements EntryPoint { private Label firstNameLabel = new Label("First name

Re: GWT CELLTABLE : How to set descending icon to column on celltable header ?

2011-10-04 Thread Sudhakar Abraham
Edit cellTableHeader property in cellTableStyle.css file. Implement the CellTable.Resources interface. Add your header icon at background- image("your_background_icon") tag in CellTableStyle.css file. //client side code. interface TableResources extends CellTable.Resources { @Source(va

Is there a way to use SplitLayoutPanel/DockLayoutPanel in panel other than RootLayoutPanel e.g RootPanel or SimplePanel

2011-10-04 Thread saurabh saurabh
Hi everyone, what I know is DockLayoutPanel and SplitLayoutPanel resize width and heigth of according to available space, thats why adding them to panel like RootPanel causes problem, like most of the time east and west components do not show up as because of not having appropri

Re: "Firefox Made Me Sad"

2011-10-04 Thread Filipe Sousa
done -- 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/-/HrAxR7q1pigJ. To post to this group, send email to google-web-toolkit@googlegroups.com. To

Re: GWT remote Logging

2011-10-04 Thread Thomas Broyer
The servlet is already there, you just need to map it in your web.xml: http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/logging/server/RemoteLoggingServiceImpl.html -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group

GWT CELLTABLE : How to set descending icon to column on celltable header ?

2011-10-04 Thread vaibhav bhalke
Hi all, How to set column in descending i.e DESC icon on top header ? On celltable loading.. I want to set sorting order to column i.e. previously sorted column/sorting order by user (In last login , before logout) I tried following way table.getColumnSortList().push(testColumn); i.e setting co

javac problem in annotation when moving from GWT 2.3 to GWT 2.4.

2011-10-04 Thread stuckagain
Hi, After I switched to GWT 2.3 I suddenly have a custom annotation that fails to compile with the Oracle javac I'm totally puzzled on how this can happen but maybe the GWT team have some insight on what might me happening in GWT that could cause this ? could this be caused by a misbeha

GWT remote Logging

2011-10-04 Thread Raja Shekhar
Hi http://code.google.com/webtoolkit/doc/latest/DevGuideLogging.html#Remote_Logging As per the document, if i wish to have remoteLogging, do i need to write a servlet class remoteLoggingServlet? if so, could someone please provide me an example how it will look like? if not, what do i need to do

Developers, please don't ignore reported GWT issues.

2011-10-04 Thread Martin Ždila
Hello GWT is a perfect toolkit but there are still many small but frustrating issues open in bug-tracker and GWT developer team seems to be ignoring them for many months or even years. GWT issues seems not to be maintained very well as there are many of them not closed but are already fixed in

Re: LocalHost and Same Origin Policy Question

2011-10-04 Thread Thomas Broyer
On Monday, October 3, 2011 3:55:38 PM UTC+2, coffeMan wrote: > > I set up a java servlet and run it through tomcat. I set it up on the > same network but just on a different machine. I am trying to access > that servlet through gwt request builder but keep getting a > statuscode of 0. Is t

Create custom callbacks to achieve synchronous code execution

2011-10-04 Thread Alexander Orlov
It seems that Dev Mode code runs synchronously... Otherwise I can't explain a bug that occurs only in production mode where the results are already there before a table has been cleaned to receive those new results and still has its outdated results. So both are mixed, although I call "cleanView