gwt-linux-2.1M3.jar

2010-09-23 Thread gopal bhalala
Hi to all I want to set environment variable of GWT_HOME for GWT2.1M3 version can any on provide me jar of this. I have GWT2.0.4 jar but it is conflict with GWT2.1M3 Best Regards & Thanking you, Gopal Dhanjibhai Bhalala -- You received this message because you are subscribed to the Google Gro

upgrade from GWT 2.1 to GWT 2.2

2010-09-23 Thread navS
Hi team, currently am using GWT 2.1, now i have to upgrade it to version 2.2. how do i start doing it. Thanks naveen -- 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-tool...@googlegroups.co

Re: can't find my GWT version

2010-09-23 Thread Didier DURAND
Hi, the static method getVersion() on class GWT (so GWT.getVersion()) gives it programmatically. So, if you put your jars alternatively in your classpath, you will find the version of each of them didier On Sep 23, 9:31 pm, Viktoriya Sokolova wrote: > Hi. > > I have a few GWT jars I am using, b

Re: Crop a photo stored locally

2010-09-23 Thread lineman78
If you want to do everything client side you will have to use a Java applet. To do it with GWT you will have to upload the file to the server. Doing so depends on your server-side approach. Whichever approach you are using you should research multi-part form data for uploading a file. You will

Re: Crop a photo stored locally

2010-09-23 Thread Jambi
Hi there, isn´t there maybe a way to do this with HTML 5? There is a lot going on right now with image processing and I was asking myself the same question about cropping. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this gr

Re: Chat with GWT

2010-09-23 Thread lineman78
May I suggest ICEpush for chat app, here is a GWT chat demo: http://demos.icepush.org/icechat-gwt/ On Sep 23, 7:26 am, danigb wrote: > There's a library (emite.googlecode.com) that allows to send and > receive messages from a xmpp server using a proxy using the BOSH > technique (http://xmpp.org/

Re: Modify files in .jar libraries

2010-09-23 Thread lineman78
You can just treat a jar file as a zip file, nothing special except structure and extension. On Sep 23, 2:30 am, Daniela Iervolino wrote: > Hi everyone! > Does anyone know how modifing files from .jar libraries? > I've tried to modify some files from a library (for example, gwt- > user.jar, from

Re: GWT DESIGNER NOT WORKING WITH GWT SDK 2.0.4

2010-09-23 Thread Eric Clayberg
GWT Designer does work quite well with GWT 2.0.4. The user in this thread made no mention of UiBinder and the error he reported would have nothing to do with UiBinder. GWT Designer supports the full GWT Java API available in GWT 2.0.4, so you can basically build any GWT 2.0.4 app that you like (inc

can't find my GWT version

2010-09-23 Thread Viktoriya Sokolova
Hi. I have a few GWT jars I am using, but I cannot find what version of GWT it is. I looked at the manifest files, but they are all for apache. I do not have or need GWT plugin for eclipse installed, I am compiling via ant in regular Eclipse Galileo. The jars have been at location when I got th

Re: Correctly implementing history

2010-09-23 Thread lineman78
This javadoc seems to have the full implementation: http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/user/client/History.html On Sep 23, 12:05 pm, Greg Dougherty wrote: > It's sad that the JavaDoc and that link I gave above both have a lot > of useful information, but neit

Re: Correctly implementing history

2010-09-23 Thread Greg Dougherty
It's sad that the JavaDoc and that link I gave above both have a lot of useful information, but neither one has the complete implementation. :-( On Sep 22, 6:35 pm, lineman78 wrote: > I am assuming that you just have history listeners everywhere that > matters.  There are multiple ways you can fi

Re: Basic purpose of onEnsureDebugId

2010-09-23 Thread Hilco Wijbenga
On 23 September 2010 10:54, Hilco Wijbenga wrote: > On 16 July 2010 02:14, Thomas Broyer wrote: >> On 16 juil, 06:26, Aditya <007aditya.b...@gmail.com> wrote: >>> Can anyone has answer why is onEnsureDebugId() is used...? >>> how does it helps while creating custom widgets. >> >> The whole notion

Re: Basic purpose of onEnsureDebugId

2010-09-23 Thread Hilco Wijbenga
On 16 July 2010 02:14, Thomas Broyer wrote: > On 16 juil, 06:26, Aditya <007aditya.b...@gmail.com> wrote: >> Can anyone has answer why is onEnsureDebugId() is used...? >> how does it helps while creating custom widgets. > > The whole notion of "debug ID" is only useful if you do run selenium > or

Custom Widget ui Binder and a constructor that takes other widgets

2010-09-23 Thread dparish
I've got a custom widget (code below) that takes in two widget's as a constructor. I'd like to use this widget in UI Binder. I can see from the docs (http://code.google.com/webtoolkit/doc/latest/ DevGuideUiBinder.html#Using_a_widget) that it's pretty easy to do this if the constructor is a set of

Re: Interested in GWT client-side JSON serialization and deserialization?

2010-09-23 Thread lineman78
This is way too complex, just stick to overlay objects and the json2.js library(assuming you are targeting wrote: > If your interested in GWT client-side JSON serialization and > deserialization check out the below link > > http://flax.ie/flax-engine-gwt-client-side-json-serialization-and-des...

Re: Crop a photo stored locally

2010-09-23 Thread Chad
Josh, If I were doing it, I think I'd start off with a route something like this: - User uploads photo - Servlet saves the photo somewhere (database or file system) - Client page displays the image (using Image widget) - User can drag and drop to create a cropping rectangle over the image - When

Re: GetOffsetWidth and css

2010-09-23 Thread Paul Stockley
You need to get the computed style property. GWT doesn't support this. I wrote a function to get the value static public native String getComputedStyleProperty(Element el, String property) /*-{ if (window['getComputedStyle']) { // W3C DOM method if (property === 'float')

Re: Google Web Toolkit Developer Plugin

2010-09-23 Thread Thomas Broyer
On Sep 23, 7:09 am, GhostCoder wrote: > I'm trying to install the FireFox Developer Plugin for: > > Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.8) Gecko/20100729 > Gentoo Firefox/3.6.8 > > I can go through the full installation, the progress bar completes, it > prompts me to restart FireFo

Interested in GWT client-side JSON serialization and deserialization?

2010-09-23 Thread Ciarán
If your interested in GWT client-side JSON serialization and deserialization check out the below link http://flax.ie/flax-engine-gwt-client-side-json-serialization-and-deserialization/ -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To po

Re: PushButton text with HTML Elements

2010-09-23 Thread Thomas Broyer
On Sep 23, 10:36 am, Kurcob wrote: > Hi Guys, > > so, in fact i have a problem with the PushButton and HTML elements. > I try something like this: > > String text = "Hello World"; > String label = ""  + text+ ""; > PushButton b = new PushButton(); > b.setText(new HTML(l).toString()); Wow! new H

Aligning VerticalPanel within DockLayoutPanel

2010-09-23 Thread Maurice
Hi, I'm having a little difficulty aligning a VerticalPanel within a DockLayoutPanel using UIbinder. My solution looks like this:

Re: MVP - model question

2010-09-23 Thread Mikael Couzic
A Curse ! ^^ Do you mean you want to share a model between multiple presenters ? That's the not the "MVP described by Ray Ryan" way of doing things. A presenter shoul d be able to get a model object in two ways only : - RPC call - being passed an event by the EventBus Maybe your models are too bi

Re: populating suggestions in SuggestBox using eventHandler than overriding SuggestOracle

2010-09-23 Thread Thomas Broyer
On Sep 23, 1:04 pm, chamarts wrote: > Hi, > > is there any action/event handler that I can implement actually gives > me a callback reference to populate the suggestions ? That's the role of the SuggestOracle. > and also is there any way to set the SuggestOracle object to > SuggestBox. For som

Crop a photo stored locally

2010-09-23 Thread Josh Tinkham
I'm building a costume database program for a local high school. I want the kids to be able to take a picture of a costume, load the memory stick on a PC and upload the pic via a FileUpload widget, then present them with a photo cropping gui to cut down the picture. From there the post-cropped pi

populating suggestions in SuggestBox using eventHandler than overriding SuggestOracle

2010-09-23 Thread chamarts
Hi, is there any action/event handler that I can implement actually gives me a callback reference to populate the suggestions ? and also is there any way to set the SuggestOracle object to SuggestBox. For some reason it happened to be a private method. Not sure whats the design strategy to make i

Google Web Toolkit Developer Plugin

2010-09-23 Thread GhostCoder
I'm trying to install the FireFox Developer Plugin for: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.8) Gecko/20100729 Gentoo Firefox/3.6.8 I can go through the full installation, the progress bar completes, it prompts me to restart FireFox but the cycle repeats, reinstall, restart...etc.

Re: Chat with GWT

2010-09-23 Thread danigb
There's a library (emite.googlecode.com) that allows to send and receive messages from a xmpp server using a proxy using the BOSH technique (http://xmpp.org/extensions/xep-0124.html) Maybe it helps Bests Dani On Sep 22, 9:15 am, Thomas Martin wrote: > Can you give the error you got ? > > Genera

Re: GWT Designer not available ...

2010-09-23 Thread umemy
We are enjoying the same problem (GWT 2.1.ME, Ubuntu 10.4 ...). 1 Step: Create a new Projekt using the "g*" new Web Project Icon on Eclipse. 2 Step: go to client package and create new "GWT uibinder composite". 3 Step: open design tab and try to click the widgets selection ... everything can be ena

PushButton text with HTML Elements

2010-09-23 Thread Kurcob
Hi Guys, so, in fact i have a problem with the PushButton and HTML elements. I try something like this: String text = "Hello World"; String label = "" + text+ ""; PushButton b = new PushButton(); b.setText(new HTML(l).toString()); Browser Result: Hello World But i just want to see the tex

Re: GWT DESIGNER NOT WORKING WITH GWT SDK 2.0.4

2010-09-23 Thread AlexG
Hi, the fact, that GWT Designer works well with GWT 2.0.4 I think isn´t true. If you watn to use UiBinder for your Views, I also got problems, with GWT 2.0.4. With GWT 2.1M3 it´s working. The problem I still have is, that the GWT Designer doens´t open ui.xml files in Design mode, which wasn´t crea

Re: History.back() bug in Firefox

2010-09-23 Thread Thad
Thank you. On Sep 22, 6:50 pm, Sven Brunken wrote: > http://code.google.com/p/google-web-toolkit/issues/detail?id=624 > > On Sep 23, 12:30 am, Thad wrote: > > > Has anyone experienced a problem with History.back() misbehaving in > > Firefox after a FormPanel.submit()?  I'm showing a pop-up dialo

Re: Tablayout panel does not renders the content

2010-09-23 Thread Falcon
Two problems that generally cause this: 1) Make sure you're in standards mode. ( at the start of your HTML document) 2) TabLayoutPanel is designed to be used inside the other Layout panels introduced in GWT 2.0. In order to get your content to show, you'll have to make sure you're inside one of th

Re: Correctly implementing history

2010-09-23 Thread Greg Dougherty
Thank you, that was exactly what I needed. On Sep 22, 6:35 pm, lineman78 wrote: > I am assuming that you just have history listeners everywhere that > matters.  There are multiple ways you can fix this, you can look at > the value of the history token in the constructors, or you might > simply be

Re: serializing classes in GWT w/o source code

2010-09-23 Thread Sachin Dole
Hello, I just wanted to update. I ended up creating new classes that are specific to the UI but are very similar to domain objects provided by our internal library. This is cool because this way, I am free to offer UI related data on these classes and not muck up the domain model and vice versa, n

GetOffsetWidth and css

2010-09-23 Thread Christophe
(I'm using GWT 2.1.0M3) I'm putting an element in an AbsolutePanel, which has some css classes (injected classes). One of the things these classes change is the width and height of the element. The code needs to know the element's width and height, and so it tries to get them with the getOffsetWi

Re: Date issue between .NET and GWT

2010-09-23 Thread Thomas Broyer
On Sep 23, 1:06 pm, shahid wrote: > I am using CSharp.NET on the server side and GWT on the client. I am > using the DateBox to choose a date and I then do a getTime() to get > milisecs for the date and send that to the server. > > On the server I take the milisecs as a .NET DateTime parameter.

Column chart having bars with line

2010-09-23 Thread lalit
I am am able to successfully draw a column chart using visualization. However I want to draw a line on the same chart. To put a an example, the line would show the total projected cost and the bars would show the actual cost incurred. So the line may not go from the top of bar and will have its ow

Re: GWT Designer

2010-09-23 Thread Noor
It is ok when I ping On Sep 23, 4:15 pm, Nathan Wells wrote: > what happens when you try to ping dl.google.com? > > On Sep 22, 10:03 pm, Noor wrote: > > > I am using the correct version, I am already tried 6 times but in > > vain. There error is still > > > An error occurred while collecting ite

Re: Using C / CGI for server-side programming still a reasonable thing to do?

2010-09-23 Thread Nathan Wells
It all depends on how productive YOU and your organization will be with any given set of technologies. C is archaic, as is CGI, but they still "work". Some things you should know about CGI, though: http://en.wikipedia.org/wiki/Common_Gateway_Interface#Drawbacks The only reason I would see for goi

Re: GWT Designer

2010-09-23 Thread Nathan Wells
what happens when you try to ping dl.google.com? On Sep 22, 10:03 pm, Noor wrote: > I am using the correct version, I am already tried 6 times but in > vain. There error is still > > An error occurred while collecting items to be installed > session context was:(profile=SDKProfile, > phase=org.ec

Re: Expose custom GWT widgets via JavaScript

2010-09-23 Thread Olivier TURPIN
Maybe gwt-exporter can give you some ideas http://code.google.com/p/gwt-exporter/ http://code.google.com/p/gwtchismes/wiki/Tutorial_ExportingGwtLibrariesToJavascript_en Olivier. On 22 sep, 22:30, gabriel wrote: > I'm looking for a good pattern or example of building custom GWT > widgets and th

Re: Modify files in .jar libraries

2010-09-23 Thread Didier DURAND
HI Daniela, would you explain while you need to do this "special occasion" king of thing? regards didier On Sep 23, 10:30 am, Daniela Iervolino wrote: > Hi everyone! > Does anyone know how modifing files from .jar libraries? > I've tried to modify some files from a library (for example, gwt- > u

Date issue between .NET and GWT

2010-09-23 Thread shahid
I am using CSharp.NET on the server side and GWT on the client. I am using the DateBox to choose a date and I then do a getTime() to get milisecs for the date and send that to the server. On the server I take the milisecs as a .NET DateTime parameter. The problem is when I receive the date on the

Re: DialogBox & UiBinder - how to get a hidden DialogBox by default?

2010-09-23 Thread Thomas Broyer
On Sep 23, 12:40 am, "marius.andreiana" wrote: > On Sep 23, 1:11 am, Thomas Broyer wrote:> On 22 sep, > 22:47, "marius.andreiana" > > wrote: > > > > On Sep 22, 11:21 pm, Gal Dolber wrote:> As it is a > > > popup it is hidden by default. > > > > For me, with gwt 2.0.4, it's shown by default.

Modify files in .jar libraries

2010-09-23 Thread Daniela Iervolino
Hi everyone! Does anyone know how modifing files from .jar libraries? I've tried to modify some files from a library (for example, gwt- user.jar, from Eclipse and from gedit) but it doesn't save anything!! Can someone help me? P.S. I'm on Ubuntu Linux! Thanks -- You received this message beca

Re: CPU utilization on IE6.0 because of Mousemove event

2010-09-23 Thread George Georgovassilis
Hello Sunil, Maybe some widgets you use implement their own mouse listeners without you knowing it (i.e. calendar?). You could progressively remove widgets until you find the one that's causing the CPU load On Sep 21, 9:34 pm, sm wrote: > Hi, > > We are using GWT 2.0.3 version. We have not writt