Re: Diagramming Library

2012-02-27 Thread keven
David Vree writes: > > Does anyone know of a GWT-based diagramming tool for creating visio- > like diagrams? > > I found a javascript library called mxGraph, which *seems* perfect: > > http://www.jgraph.com/mxgraph.html > > But it doesn't have a GWT wrapper and in their documentation they say

Re: Accessint GWT's HIstory Stack

2012-02-27 Thread Jens
> > I like the idea, but I'm finding that the value change event only fires > when prefix portion of the token changes. > > Thanks for your reply... By the way, am I right that the value change > event only fires this way? > History.addValueChangeHandler() always fires a ValueChangeEvent if the

Re: User visible urls

2012-02-27 Thread Carlos Aguayo
works like a sharm! thanks buddy! On Wednesday, February 22, 2012 5:08:23 AM UTC-5, Thomas Broyer wrote: > > On Tuesday, February 21, 2012 6:04:55 PM UTC+1, Carlos Aguayo wrote: >> >> Hi Thomas, could you share the one that you wrote to use pushState? >> Thanks! >> > > Here's a skeleton implement

GWT Precompress on tomcat 7

2012-02-27 Thread Ash
Hello i am trying to use com.google.gwt.precompress.Precompress in my project. i am adding to my gwt.xml file and enabling tomcat compression but when i compile and run the application on tomcat the application doesn't run. what exactly i am missing?? i am using GWT version 2.4 thanks a lo

Re: uibinder for mobile

2012-02-27 Thread Daniel Kurka
You might want to take a look at mgwt ( http://www.m-gwt.com ). THose are mobile widgets that work with uibinder. 2012/2/27 Luke > what is the portability way to create uibinder (view with computer web > browser) so that easily ported to mobile version and viewable nicely > in android/iphone (sm

Re: Accessint GWT's HIstory Stack

2012-02-27 Thread Lars
I like the idea, but I'm finding that the value change event only fires when prefix portion of the token changes. It does NOT fire when the token changes from: #INDEX:/2///$/// to #INDEX:/3///$/// But it DOES fire when it changes from: #INDEX:/2///$/// to #EDIT:FOO

Re: how to test GWT app through a proxy

2012-02-27 Thread JoseM
I don't think it's directly related to the proxy pattern that Dan mentioned. It seems to be that your user doesn't have great internet access, or there is some issue in the connection between that user and your web server. It seems that the error message happens when the browser is not able t

Re: Accessint GWT's HIstory Stack

2012-02-27 Thread Ovidiu Mihaescu
Add your own valueChangeHandler that keeps track of the last Index state: class LastIndexTracker implements ValueChangeHandler { Index lastIndex; ... void onValueChange(ValueChangeEvent event) { if (isIndexToken(...)) { lastIndex = ; } } Index getLastInd

Re: event.stopPropagation()

2012-02-27 Thread Wojtek Mamrak
Yes it does, thank you Jens. 2012/2/27 Jens : > Maybe StackLayoutPanel uses ClickEvent/ClickHandler instead of > MouseUpEvent/MouseUpHandler (haven't looked into the source, but feel free > to do it yourself). If so, you should stop propagation of ClickEvents > instead of MouseUpEvents.. > > -- J.

Re: how to test GWT app through a proxy

2012-02-27 Thread John Malpas
Thanks that is interesting. What I know is, I am writing the "MyDataService" part, and somehow GWT must be writing the "MyDataService_Proxy" part. And then there is this one (thankfully) very vocal user, whose access to the RPC needed by the application goes through the "MyDataService_Proxy" part,

GWT DataGrid Widget unpredictable row height issue...

2012-02-27 Thread Bill M
Hi all, I'm loading the new DataGrid Widget with the results of a SQL query. I have noticed that some rows (just a few) are appearing with a larger row height than others, on a load of about 1000 rows. I tried setting each column of the row to a fixed value (not using the results of the query), t

Re: Date box pop up seems to ignore default css

2012-02-27 Thread Deepak Singh
Any suggestion pls... On Sun, Feb 26, 2012 at 1:06 AM, Deepak Singh wrote: > Hi All, > > I have a ui:binder and am using date box as follows > > > > Java: > DateTimeFormat df = DateTimeFormat.getFormat("EEE, MMM d, "); > Format f = new DateBox.DefaultFormat(df); > agPacValidityFrom.setTitl

Re: How do I call getServletContext from within GWT?

2012-02-27 Thread Bill M
Thanks! On Feb 22, 7:49 pm, Daniel Mauricio Patino León wrote: > getServletContext().getRealPath("/") > > Since RemoteServiceServlet is a subclass of HttpServlet > > Will give you the path. This on server side ofcourse. > > 2012/2/22 Bill M > > > > > > > Hi all, > > > Can someone explain to me h

Re: event.stopPropagation()

2012-02-27 Thread Jens
Maybe StackLayoutPanel uses ClickEvent/ClickHandler instead of MouseUpEvent/MouseUpHandler (haven't looked into the source, but feel free to do it yourself). If so, you should stop propagation of ClickEvents instead of MouseUpEvents.. -- J. Am Montag, 27. Februar 2012 16:41:02 UTC+1 schrieb W

Re: M x N cell grid

2012-02-27 Thread Chris Price
If I've understood your problem correctly, I can think of a couple of approaches - a cell list with the cells styled to float? an adapter with the same API as cell list but which wraps a cell table? I don't think there is anything out the box, I suppose it depends on which definition of clean you'r

Accessint GWT's HIstory Stack

2012-02-27 Thread Lars
Been searching for an answer to the following problem I have an application with 2 Places: "Index" and "Edit" each have representative tokens that carry state information. My desire: I want for the user to be able to return to the last "Index" state after many possible "Edit" states, so say

Re: GWT RPC not working behind Apache and Tomcat

2012-02-27 Thread mukarev
Hi! Thanks for your reply. We are using AJP. WIth one App in ROOT it is working fine - but for two apps with two domains it doesn't work. Thanks for your help. Greetz, Markus On 26 Feb., 17:05, Lukasz Plotnicki wrote: > Hi, > > our GWT App is running in this particular setting without any pro

Re: GWT RPC not working behind Apache and Tomcat

2012-02-27 Thread mukarev
web.xml in web-inf from first app http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"; version="2.5" xmlns="http://java.sun.com/xml/ns/javaee";> rpc

event.stopPropagation()

2012-02-27 Thread Wojtek Mamrak
Hello group, I defined a header in my StackLayoutPanel as a composition of few other components (i.e. text node and label inside an HTMLPanel). When the label is clicked, I would like to stop the mouseUp event from bubbling to the header, so that the animation is not generated. I've been googling

problem editing entity that extends abstract class using gwt editor mechanism

2012-02-27 Thread Michał Gryczka
Hi We are developing webapp with lots of forms and complex model. To make it faster we decided to use gwt editors. We use nested editors in few places. We run into troubleafter refactoring model and making few classes extend common abstract class. The editor does not seem to see the fields that

uibinder for mobile

2012-02-27 Thread Luke
what is the portability way to create uibinder (view with computer web browser) so that easily ported to mobile version and viewable nicely in android/iphone (small sceen)? from what i know , have to create entire web layer for mobile. Any more easier way? -- You received this message because yo

Re: Is there a way to determine if a GWT app is active or inactive?

2012-02-27 Thread m8o
Did not find that on stackoverflow. :( That and following two more cascading links from there certainly told me everything I need to be able to roll my own. Thanx very much! I was trying to hook into the events of builtin object "Window" last week but was failing. Either I or another on my tea

Re: Sporadic errors during compilation, Checking type argument 0 of type 'java.util.Arrays.ArrayList, no default constructor.

2012-02-27 Thread Thomas Broyer
On Sunday, February 26, 2012 2:22:47 AM UTC+1, Dan wrote: > > > [WARN] Checking all subtypes of Object which qualify for serialization > > This is your problem. See http://code.google.com/webtoolkit/doc/latest/DevGuideServerCommunication.html#DevGuideSerializableTypes -- You received this

Question about Dynamic Forms in GWT.

2012-02-27 Thread pimuri
Hi All, I'm new to using GWT (Version 2.4 with Eclipse). I have a question about dynamic forms. For a web application I would like to make a dynamic form with two columns of comboboxes. At the beginning only one combobox (cb1_1) on the left column exists. As soon as a value has been chosen from

M x N cell grid

2012-02-27 Thread Olivier Scherler
Hello everybody, I would like to display a somewhat large amount of data in a grid, not a table. That is, I would like an M cols x N rows grid that displays M items per row on N rows, with a custom cell that displays the properties I need. Then I’d like to scroll that grid, vertically or horizonta

Re: Additional plugins are required to display all the media on this page - Firefox 10.0.2

2012-02-27 Thread Jee
Thanks Edgin. When I attempt to load my gwt application in firefox 10.0.2. I got plugin missing (Additional plugins are required to display all the media on this page) error message in top of the page, the same message shown for chrome browser also but not happened for IE browser. How could we

Re: GWT Timer doesn't work

2012-02-27 Thread Santosh kumar
Try this, Timer timer = new Timer() { public void run() { // Do Rpc. i.e., retrieveCollection @Override public void onFailure(Throwable throwable) { // if needed

Calendar performance issue

2012-02-27 Thread sonyt...@gmail.com
Hi, I have calendar application using gwt. But when loading more data with calendar iam getting script too large stack . How i can remove this error . Is it possible to use json data for calendar instead of java objects as datasource and dynamically load when click on each week from server, If any