Re: Activities and Place design wizard

2012-01-12 Thread Marius Grama
My answer is not a concrete solution for your problem, but you could make use of GWTP library (some sample code is here http://code.google.com/p/gwt-platform/wiki/RunningGwtpSamples ) which could help you to build easier a workflow application. -- You received this message because you are su

Re: how to find the path to image resources

2012-01-12 Thread StrongSteve
You have to navigate relatively from the directory your Resource interfaces resides in... On 11 Jan., 20:32, mars wrote: > hi, > > i have a maven gwt project, no exception all the images are stored > under 'src/main/webapp/img', then in the package : > 'com.mycom.myapp.client' i have Resources.ja

Re: Mouse Cursor Position

2012-01-12 Thread StrongSteve
I would suggest adding a mouseMove Listener to the root panel of the GWT application. That way you get informed about every mouseMove - and the new position. Of there is no event within your time interval (2 seconds), the mouse has obviously not moved and the position is the same as before. Greet

Re: Activities and Place design wizard

2012-01-12 Thread Cristian Rinaldi
I need maintain the state between stages of wizard, therefore i need caching the Activity. I read over CachingActivityMapper, I just wanted to know if it was the appropriate solution. Thanks for reply A.U.S Cristian Rinaldi Teléfono Móvil: +54 9342 5238083 www.logikas.com Teléfono Fijo: +54 3

ListGrid filter issues

2012-01-12 Thread ankit
I am facing a ListGrid filter issues. The problem i am facing is when i apply any filter on the ListGrid to edit any ListGridRecord that edited records just get removed as soon as i removed filtered text from the filter of the listgrid. When i try to get the records from the listgrid after removin

Re: how to find the path to image resources

2012-01-12 Thread Thomas Broyer
@Source paths are resolved in the *classpath* (using ClassLoader.getResourceXxx), not the filesystem. ...but I don't understand what you're trying to do: 1. src/main/webapp contains the files that can/will be served via HTTP (e.g. src/main/webapp/img/foo.png will be available at http:

Re sizing in Split Lay out Panel

2012-01-12 Thread Sanjay Jain
Hello All, I am using GWT 2.4 for my application.In this application for one page I have used SplitLayoutPanel.In this SplitLayoutPanel on west side I added a panel and at center side I added a panel. Now at initial center panel having the size 100%.In other word west panel has 0 width.Now at s

Re: MVP understanding with Editor Framework

2012-01-12 Thread Cristian Rinaldi
Hello: By example: if you work with RequestFactory the model in MVP means a proxy, ie the DTO to be transmitted from the client to the server according to your entities in the model. This proxy is mapped to the properties view. (binding). Regards.!! A.U.S Cristian Rinaldi Teléfono Móvil: (

Re: MVP understanding with Editor Framework

2012-01-12 Thread Cristian Rinaldi
It's easy to get confused when you think the MVP in the form of "Passive View", but there is another version called Supervising Controller, where the view interacts with the model to perform data binding, the presenter, is relegated to attend more complexlogic, and we can not express declaratively.

Re: AsyncProxy and ActivityMapper

2012-01-12 Thread Cristian Rinaldi
Hello: Maybe my question sounds silly, but what is the need to use AsyncProvider or runAsync in the Activity, if heavier is the view and we can use AsyncProvider in the start method of the activity to get the view? Regards. A.U.S Cristian Rinaldi Teléfono Móvil: (0342) 155 238 083 www.logikas.c

Re: Activities and Place design wizard

2012-01-12 Thread David
I'm not sure why you would need to additional activity management beyond the Place Controller that you are using. You could merely cache the stringified place tokens and use them in your breadcrumb links. On Jan 12, 5:26 am, Cristian Rinaldi wrote: > I need maintain the state between stages of

Re: Activities and Place design wizard

2012-01-12 Thread David
I'm not sure why you would need additional activity management beyond the Place Controller that you are using.   You could merely cache the stringified place tokens and use them in your breadcrumb or hold on to any other state that you may need. If you are using Gin then you can configure your ac

Re: WARNING: failed _ah_ServeBlobFilter: java.lang.ClassCastException:

2012-01-12 Thread koma
same here ! -- 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/-/imt2shxoOrIJ. To post to this group, send email to google-web-toolkit@googlegroups.c

RE: loading an image

2012-01-12 Thread tante anni
thx in meantime i tried just this but only  GWT.getHostPageURL()+"imageRetriever" is working properly. " GWT.getModuleBaseURL() " doesn't work neither in web nor in hosted mode. the modules name differs from actual url: module "myapp" url: "MyApp-0.0.1"(in web mode) an and "MyApp.html?gwt.codesv

Deferred binding and chaining generators

2012-01-12 Thread christian elsen
I have one question about deferred binding, chaining generators and the rule resolution. I would like to use multiple generators on the same set of classes implementing a particular interface. Seems like I'm overlooking something or it does not work. I also checked any documentation but could not

Re: Deferred binding and chaining generators

2012-01-12 Thread Thomas Broyer
On Thursday, January 12, 2012 5:31:33 PM UTC+1, christian elsen wrote: > > I have one question about deferred binding, chaining generators and > the rule resolution. > > I would like to use multiple generators on the same set of classes > implementing a particular interface. Seems like I'm ove

CellTable - DoubleClick

2012-01-12 Thread develop.acb
Hi, I´am not able to get a DoubleClick working on a row in a CellTable widget. I found an article in this group "ClickableCell double click event (CellTable) " - but I can´t get it to work! The following code works - but I get still the double click on the celltable header. MyCellTableClass ...

RequestFactory: Get entity ID on success of persist

2012-01-12 Thread Tapomay Dey
Hi, I am using following code. Note: request is of type ? extends RequestContext entity is of type ? extends EntityProxy (request).persist().using(entity).fire( new Receiver() { @Override public void onSuccess(Void unUsed) { I need the entity ID generated in the DB here. If I do entit

Script de Google Spreadsheet

2012-01-12 Thread José Luis Ordiales Fernandez
Hello, I have created a chart with Google Spreadsheet and I want to publish on the Web. How can I insert this script on a particular page and not on every page of my project? I have tried with HTMLPanel , with varying... but nothing Thanks! -- You received this message because you are subscri

Re: RequestFactory: Get entity ID on success of persist

2012-01-12 Thread Patrick Julien
in request is of type ? extends RequestContext add your own persist method that returns the newly created entity instead of void. The you receive it using Receiver instead of Receiver -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.

Cannot apply CSS through GWT WindowBuilder editor for a multiple modules/Entrypoint application

2012-01-12 Thread Xybrek
I usually use GWT WindowBuilder editor to design my GWT application UI, however I refactored my application to implement multiple modules/EntryPoint as described in my other post: http://stackoverflow.com/questions/8834946/dealing-with-rpc-when-doing-multiple-gwt-modules Now I am getting this

Re: RichTextArea on IE7 insert after enter typed

2012-01-12 Thread gangurg gangurg
Thanks for pitching in . This is the Issue . I am trying to do some formatting as well as recognizing text . In firefox and chrome after you type in a word in the rich text area and press enter , you would notice that the result html has br tag where as in IE it is tag . Basically , i just want

Problem with Eclipse GWT plug in

2012-01-12 Thread Mohamed El Shall
hi folks, i have a problem with eclipse GWT plug in when running a totally new google web application project the browser comes out : with the 404 Error > page not found (Main Project Page.htm) so pls pls if any one know the solution for this problem i really would be so grateful :( -- You receiv

Column Field Updater does not trigger if clicking on a button

2012-01-12 Thread Bestmacfly
Hello, I have a problem with fieldupdater in a cell table. I'm using field updater to allow user changes in this table like the following: demoColumn.setFieldUpdater(new FieldUpdater() { @Override public void update(int index, EntityProxy object, String value) { obj

Code splitting size analysis

2012-01-12 Thread Sergey
Hi! I'm developing some application and recently realized that it's size is too big (nearly 1,5MB per browser permutation) and decide to use a code splitting feature. But when I split one of my 5 modules to be load first it just take 60% of size, so it is not super efficient. My question is - how

Re: How is Math.Random emulated? and how good is it?

2012-01-12 Thread Trevor Skaife
You can always look at the source... http://www.google.com/codesearch#A1edwVHBClQ/user/src/com/google/gwt/user/client/Random.java&q=random%20package:http://google-web-toolkit%5C.googlecode%5C.com so yes, it's the same On Jan 11, 8:07 pm, Kolban wrote: > I stumbled across this today ... > > http:

Re: Code splitting size analysis

2012-01-12 Thread Mark
Try -compileReport unless that's what you meant. If there is a lot of code shared between the different modules then code splitting won't give you the great results you're hoping to get. As I believe he documentations says, code splitting is an iterative process of getting a compile report , seei

Failed to create an instance of 'com.gwt.tutorial.MyEntryService' via deferred binding

2012-01-12 Thread ram
I got this exception when I start in Gwt Dev Mode. I could not figure out what the issue was from the below stack trace: Failed to create an instance of 'com.gwt.tutorial.MyEntryService' via deffered binding com.google.gwt.core.client.JavaScriptException: (TypeError): Cannot call method 'apply' o

GWT CellTree with an optional pop-up menu triggered on click of a TreeNode

2012-01-12 Thread fastnsilver
I've dug though all the documentation and samples I could find but cannot find a solution. I've looked in the obvious places like here: http://code.google.com/webtoolkit/doc/latest/DevGuideUiCellWidgets.html#selection and here: http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellTree Perh

Re: Generating GWT widgets based on an XML template

2012-01-12 Thread BST
I have been looking for something like this and this seems to be a good strategy.@Arshad Would be great if you let me know if this was successful. My query is how did/would you push the values from the generated UI to a database ? The DTO is representing the UI, and how to capture the values fr

Re: Generating GWT widgets based on an XML template

2012-01-12 Thread Pandy .k
May be this link will help you... http://code.google.com/webtoolkit/doc/latest/tutorial/RPC.html after that any query means contact my mail id.. by, pandy.k DEAS Technology Private Limited, Chennai. -- You received this message because you are subscribed to the Google Groups "Google Web