Re: Error This UIObject's element is not set;

2008-09-16 Thread Shi
Dohhh! thank you very much for your help! I you have been very useful!! Shi --~--~-~--~~~---~--~~ 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@googlegr

Re: Failed to load module com.gwt.LoginCliente". Please see the log in the development shell for details.

2008-09-16 Thread Shi
Hi,thank you for yours answers! The problem is built using modules Clypal Studio without calling applicationCreator of GWT. Using clypal study, the application can be tested only with the compiler of its Clypal but it seems does not support gwtext. Here's why those mistakes continue. Shi --~--~-

Re: Error This UIObject's element is not set;

2008-09-16 Thread Danny Schimke
Hi Shi! create a constructor for your MenuHome and move the code from the Composite()- Method into this constructor. Extending from Composite is correct! ^^ Don't know why you use a method for doing this... ;) ... public MenuHome() { VerticalPanel vPanel = new VerticalPanel(); // Do You really wan

#token fragment sometimes cause page reload, sometimes not?

2008-09-16 Thread Brice
Good evening. I am working on a new GWT app and I noticed a few strange behaviors in IE 7 that I didn't see in FireFox / Safari. Particularly that a link with a #token will cause a page refresh if its in my wrapper HTML, but not if its generated by GWT. This doesn't happen (from what I can see) in

Re: GWT Google Maps InfoWindow Resizing

2008-09-16 Thread Pavel Byles
Yes... reset is what I was referring to On Tue, Sep 16, 2008 at 4:43 PM, Eric Ayers <[EMAIL PROTECTED]> wrote: > I didn't see a resize() function other than reset() > > > On Tue, Sep 16, 2008 at 4:25 PM, Pavel Byles <[EMAIL PROTECTED]> wrote: > >> I know the JS api has a resize function.. but GWT

Re: FileUpload problem on IE

2008-09-16 Thread anjolight
Hi martin, thanks for the response. I found a way around the problem. I have a simple PHP script below on the server side and this causes IE to show a "Do you want to save?" popup. (And my FormHandler.onSubmiteComplete never gets called) Interestingly, however, if I comment out the header() line

Re: Best solution for client-side graphing in GWT?

2008-09-16 Thread [EMAIL PROTECTED]
Please do note that the library requires gwt-1.5.X and gwt-incubator. On Sep 16, 6:27 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I do have a library together, currently it is very undocumented, > however it does follow the same structure as Flotr. > > http://code.google.com/p/glotr/ > >

Re: Best solution for client-side graphing in GWT?

2008-09-16 Thread [EMAIL PROTECTED]
The key drawback with amcharts (and chronoscope) is that they rely on flash for their charting. This provides a distorted presence across browsers (unless it always uses flash) and requires the end user to have a plugin installed (third party, closed source). Instead a better solution would be o

Re: Best solution for client-side graphing in GWT?

2008-09-16 Thread [EMAIL PROTECTED]
I do have a library together, currently it is very undocumented, however it does follow the same structure as Flotr. http://code.google.com/p/glotr/ On Sep 12, 1:44 pm, "Perelman Nathan (Nathan)" <[EMAIL PROTECTED]> wrote: > I'm aware that that is possible, I'd rather not reinvent the wheel myse

Re: GWT Google Maps InfoWindow Resizing

2008-09-16 Thread Eric Ayers
I didn't see a resize() function other than reset() On Tue, Sep 16, 2008 at 4:25 PM, Pavel Byles <[EMAIL PROTECTED]> wrote: > I know the JS api has a resize function.. but GWT doesn't. > Also I've seen others do it but have no idea how it's done. > > -Pavel > > On Tue, Sep 16, 2008 at 3:11 PM, Er

Re: Out of Memory Error During GWT compilation

2008-09-16 Thread Andrej
Hi, My module have about 800 java classes and -Xmx256M is enough. Non- gzipped compiled .cache.html size is 1MB How many permutation do you have? example: http://www.demo.qualityunit.com/pax4/ Andrej On Sep 16, 11:20 pm, Filipe Sousa <[EMAIL PROTECTED]> wrote: > Bal Krishna wrote: > > Hi All,

Re: Invalid version number "null" when using the hosted mode

2008-09-16 Thread Daniel
One more thing. I'm using JBoss and have tried clearing out all tmp/ work directories to no avail. Also, when looking at the access log in jboss you don't see a request for the hosted.html file. On Sep 16, 2:28 pm, Daniel <[EMAIL PROTECTED]> wrote: > I'm getting this same problem.  I'm using os

Re: Invalid version number "null" when using the hosted mode

2008-09-16 Thread Daniel
I'm getting this same problem. I'm using osx and noserver mode. I have tried force refreshing from within the hosted mode, and also tried clearing the cache/history from within safari (not sure if they are linked). I also noticed the comment earlier about loading the hosted.html file from the c

Error This UIObject's element is not set;

2008-09-16 Thread Shi
Hi, I'm trying to "compose" the widget, but I get the same mistake.I simplified the code of 2 modules that I consider: - import com.google.gwt.user.client.ui.RootPanel; import com.google.gwt.user.client.ui.VerticalPanel; import com.google.gwt.user.client.ui.Composite; public class MenuHom

Re: Problem with mouse selection of suggestions in SuggestBox which is disabled in onLostFocus

2008-09-16 Thread jakob.korherr
And it works! Take a look at my blog: http://my.epos4.at/fota/blog/blogid/245_Workaround_for_GWT_Issue_729_in_SuggestBox On Sep 15, 7:39 pm, "jakob.korherr" <[EMAIL PROTECTED]> wrote: > Now I think I just found the solution. I have to use a MouseListener > on the popup the set a flag whether the

Re: Out of Memory Error During GWT compilation

2008-09-16 Thread Filipe Sousa
Bal Krishna wrote: > Hi All, > I am using GWT in my application. > My system is having 2GB RAM and I have around 2000 Java files to > compile. During compiling the files, I am using JVM argument -Xmx1024M > but my GWT compilation is failing and throwing this error. I'm having the same problem and

Re: GWT Google Maps InfoWindow Resizing

2008-09-16 Thread Pavel Byles
I know the JS api has a resize function.. but GWT doesn't. Also I've seen others do it but have no idea how it's done. -Pavel On Tue, Sep 16, 2008 at 3:11 PM, Eric Ayers <[EMAIL PROTECTED]> wrote: > I just added a patch for the GInfoWindow.reset() method in the issue > tracker, but I was unable

Re: Does the server side language matter?

2008-09-16 Thread gregor
Jim, your words > > Oh boy, you lost me. I'm not sure your point, but dynamic languages > have the ability to test the server side in a runtime environment. > I think the only difference is that dynamic languages don't compile. > Granted, that prevents some bugs, but not all bugs. > > Can you

Re: GWT Google Maps InfoWindow Resizing

2008-09-16 Thread Eric Ayers
I just added a patch for the GInfoWindow.reset() method in the issue tracker, but I was unable to get it to work reliably. I have a question into the Maps folks. -Eric. On Tue, Sep 16, 2008 at 1:39 PM, Pavel Byles <[EMAIL PROTECTED]> wrote: > Does anyone know how to make the InfoWindow resize o

Re: Does the server side language matter?

2008-09-16 Thread Lothar Kimmeringer
Hello Jim, Jim Freeze schrieb: > > Oh boy, you lost me. I'm not sure your point, but dynamic languages > have the ability to test the server side in a runtime environment. Maybe we should talk about the word "test" here. Do you mean trying out something and see a result without the need of comp

Re: Send a widget to the server?

2008-09-16 Thread WadeC
Don't sent the widgets to the server. Just send the data from the widget to the server... On Sep 16, 6:53 am, Markuz05 <[EMAIL PROTECTED]> wrote: > Hi, > I wonder if it's possible, and if it' a good choice send a widget to > the server. > My application is a typical CRUD application where users s

Re: JSNI method '@com.google.gwt.dom.client.OptionElement::setLabel(Ljava/lang/String;)'

2008-09-16 Thread jchimene
Thanks, I'll file a bug. On Sep 15, 9:33 am, jchimene <[EMAIL PROTECTED]> wrote: > Hi, > > I'm seeing the following message: > [WARN] JSNI method > '[EMAIL PROTECTED]::setLabel(Ljava/lang/ > String;)' returned a value of type string but was declared void; it > should not have returned a value at

Re: Modal PopupPanel

2008-09-16 Thread Chinmay Bajikar
More Updates on this. I have my own popup class which extends PopupPanel. & then I have some other places where I use PopupPanel directly. The ones that I use direct work fine as modal=true, but the one that extend PopupPanel dont. Also I will take the statement that it worked in 1.4 back. My bad

Re: GWT Eclipse Plugin????

2008-09-16 Thread Eric Clayberg - Instantiations
My understanding is that it will contain tools to ease development of GWT apps in Eclipse (project wizards, code assist, compilation assitance, maybe deployment aids). They don't plan to include any GUI development pieces so it will be complementary to GWT Designer. We might even layer GWT Designe

Re: Does the server side language matter?

2008-09-16 Thread John
Thanks for the suggestions everyone. Definitely some things to think about in them. I probably should have explained that I am looking at things more from an architecture design view. I am not likely going to do very much coding on this myself, but I don't want to end up with the ball of mud th

Accessing a Javascript variable

2008-09-16 Thread ben
Hey All, I have a question on how to go about implementing something. I have a .js file that I include in the projects html file (the file that starts everything). It does some initial work, and sets a couple variables. This is all basically outside of GWT. it sets a variable my_variable. If w

Re: Accessing a Javascript variable

2008-09-16 Thread ben
nevermind, just figured it out while I was typing. I needed to use $wnd.my_variable for those interested public static native String getMyVariable() /*-{ return $wnd.my_variable; }-*/ On Sep 16, 2:07 pm, ben <[EMAIL PROTECTED]> wrote: > Hey All, I have a question on how to go about implemen

GWT Google Maps InfoWindow Resizing

2008-09-16 Thread Pavel Byles
Does anyone know how to make the InfoWindow resize once the content has been loaded within it? -Pavel --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to G

Extending GWTShell

2008-09-16 Thread Leandro Rodrigo Saad Cruz
Hi all. I'm working on GWTShell to enable a new flag -serverclass. The -serverclass tag should enable the GWTShell to start other servlet container other than Tomcat. Is this a general need? If you want I can send the code to the list. Cheers. -- Leandro Rodrigo Saad Cruz software developer - cer

Modal PopupPanel

2008-09-16 Thread Chinmay Bajikar
Hi, This used to work in 1.4. If we set the PopupPanel as AutoHide=false,Modal= true, then other widgets in our app ignored the clicks until the PopupPanel was hidden. Since migrating to 1.5 this has stopped working. Any ideas on this. I checked the issues list and couldn't find any issue specifi

Re: Multiple serialization policies generated

2008-09-16 Thread Isaac Truett
On Sun, Sep 14, 2008 at 5:52 AM, daniel.z <[EMAIL PROTECTED]> wrote: > > I'm using GWT 1.5.2 with hibernate4gwt 1.1b and the maven- > googlewebtoolkit2-plugin 2.0-beta20 and im currently getting multiple > differing serialization policy files (*.gwt.rpc) generated. I wondered > if there is one fil

Re: GWT Eclipse Plugin????

2008-09-16 Thread irc1258
H. Not one comment on the new GWT Eclipse plugin about which I initiated this thread. It occurred to me that some people might not have known that I was referring to the GWT plugin developed by the Google GWT team. Does anyone know the status of this plugin? Will it be release along with a fut

Re: Does the server side language matter?

2008-09-16 Thread walden
Thomas, On Sep 16, 11:10 am, Thomas Broyer <[EMAIL PROTECTED]> wrote: > (I you ask me my opinion: GWT-RPC is not RESTful so I don't use it, > but the hability to share a class between client and server code is > appealing; I'm not using such a thing either though) How do you arrive at that opini

Re: RemoteServiceServlet#doGetSerializationPolicy

2008-09-16 Thread adam
Thanks very much for pointing out the comment text that I stupidly missed. Next time I'll read the comments more clearly before implementing a workaround and/or posting to the forum. Bis bald, Adam On Sep 16, 3:19 am, "daniel.z" <[EMAIL PROTECTED]> wrote: > Hi Adam. > > When looking in the sourc

Re: Basic Authentication with GWT RPC requests

2008-09-16 Thread walden
GWT RPC works fine with Digest, and should work fine with Basic. Make sure your service entrypoint url is included as a secure resource in web.xml. On Sep 16, 8:30 am, Jerome Velociter <[EMAIL PROTECTED]> wrote: > Hello everybody, > > I am wondering if there is any special configuration, anythin

Re: GWT Developer

2008-09-16 Thread walden
Ok, but we'll need a medical history first. And what is your insurance? ;-) On Sep 16, 6:04 am, Bal Krishna <[EMAIL PROTECTED]> wrote: > Hi All, > > I don't have very much experience of GWT. But I have some problems > that I want to discuss. --~--~-~--~~~---~--~~

Re: Reporting tool and GWT

2008-09-16 Thread Charlie Collins
Maybe as opposed to reporting you mean charting? Reporting is a broad topic, but in most senses can usually be done on the server side (and results returned to client). http://code.google.com/p/gchart/ On Sep 16, 7:10 am, Manik <[EMAIL PROTECTED]> wrote: > Hi, > I need any reporting tool whic

Re: GWT Compilation Time

2008-09-16 Thread Charlie Collins
As Andrej says, there is a permutation for every "axis" you create. One for every browser, one for every locale, one for every other deferred binding axis you use. When you have 4 languages, and use the default support for 4 browsers, you get 16 permutations. To speed this up during development

Re: Basic Authentication with GWT RPC requests

2008-09-16 Thread Charlie Collins
Try RequestBuilder http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/b7a6efdc09e5d508/e477efffa6db5e8e On Sep 16, 8:30 am, Jerome Velociter <[EMAIL PROTECTED]> wrote: > Hello everybody, > > I am wondering if there is any special configuration, anything special > to do to hav

Re: GWT Compilation Time

2008-09-16 Thread Andrej
Hi, Instead of 4 cache.html files per module (one for each browser: ff,ie,safari,opera) there will be 4 x 3(3 locales) = 12 cache.html files. It seems that compilation time depends on #permutations. On Sep 16, 12:21 pm, Bal Krishna <[EMAIL PROTECTED]> wrote: > Hi All, > I am implementing I18 sup

GWT-Maven updated, now supports 1.5 (and has gotten a lot of other updates)

2008-09-16 Thread Charlie Collins
Just a bump to let this list know that GWT-Maven has been updated quite a bit recently. http://code.google.com/p/gwt-maven/ The new version is a lot more straightforward to configure (using more Maven-ish approaches where possible), launches the shell a lot faster, supports debugging, supports I

Re: Getting User Input from Input Field

2008-09-16 Thread Thomas Broyer
On 15 sep, 22:20, WebDude <[EMAIL PROTECTED]> wrote: > I'm trying to get the text entered by a user in an "input" field.  It > works in IE and in Hosted Mode, but not in Firefox or Chrome.  I'm > using DOM.getElementAttribute to read the text.  When it doesn't work, > all I get is an empty strin

Re: Does the server side language matter?

2008-09-16 Thread Jim Freeze
On Tue, Sep 16, 2008 at 10:10 AM, Thomas Broyer <[EMAIL PROTECTED]> wrote: > > > On 15 sep, 20:53, "Jim Freeze" <[EMAIL PROTECTED]> wrote: >> >> JSON can be made as fast and json libraries for python already exist. >> So, I seriously doubt anyone is writing JSON serialization from scratch. >> Your

Deploying GWT on IIS (w/ .cache and .nocache honored)

2008-09-16 Thread [EMAIL PROTECTED]
How would one configure IIS to be able to deploy a GWT application properly (w/ the .nocache and .cache being honored)? I know that there are global caching settings, but that's not adequate. I think one could do this w/ ASP.Net acting as a filter and forcing HTTP headers. But this would requir

Re: Out of Memory Error During GWT compilation

2008-09-16 Thread Chinmay Bajikar
Hi, I experienced the same issue while migrating from 1.4 to 1.5. We had a lot of non-parametrized collections like maps & lists ( we had typeargs annotations defined for them). And compilation used to give a whole lot of warnings for the same. After changing our code to have parametrized collecti

Re: Does the server side language matter?

2008-09-16 Thread Thomas Broyer
On 15 sep, 20:53, "Jim Freeze" <[EMAIL PROTECTED]> wrote: > > JSON can be made as fast and json libraries for python already exist. > So, I seriously doubt anyone is writing JSON serialization from scratch. > Your server side code probably only needs to be modified with > self.data.to_json. ...

Re: Send a widget to the server?

2008-09-16 Thread Ian Petersen
On Tue, Sep 16, 2008 at 9:53 AM, Markuz05 <[EMAIL PROTECTED]> wrote: > In order to lighten the client code I thought to send > the widget to the server and make all the "translation operations" > from table to data-structure in the server side. > is it possible? Nope. Each widget is tied to a DO

Re: Does the server side language matter?

2008-09-16 Thread Jim Freeze
On Tue, Sep 16, 2008 at 8:02 AM, Arthur Kalmenson <[EMAIL PROTECTED]> wrote: > > Hello Jim, Hello Arthur >> My favorite IDE is certainly not eclipse, and probably not the best to use >> with Django. The server side can be quickly written and tested independent >> of the client side. I consider t

Re: Does the server side language matter?

2008-09-16 Thread Jim Freeze
On Tue, Sep 16, 2008 at 2:24 AM, Lothar Kimmeringer <[EMAIL PROTECTED]> wrote: > > Hello Jim, Hi > Jim Freeze schrieb: >> My comments are inline below. > > Of course, that's the way, quoting in mails should take place ;-) Of course. :) > But don't be surprised if GWT-applications are now poppi

Re: Getting User Input from Input Field

2008-09-16 Thread Danny Schimke
You init an element with "com.google.gwt.user.client.Element elem = DOM.getChild(inputHTML.getElement(), 0);" and then you wanted to get the value "val = DOM.getElementAttribute(elem, "value");". Why you do not try to get the value by "elem.getAttribute("value")"? Or use a TextBox instead HTML("...

Re: GWT Eclipse Plugin????

2008-09-16 Thread Eric Clayberg - Instantiations
The problem was actually fixed and available for download about 8 hours prior to that (and less than 16 hours after you first reported the problem to us). The released download has been patched with that fix as well (its newer that what you have). On Sep 16, 9:54 am, Lothar Kimmeringer <[EMAIL P

Re: GWT Eclipse Plugin????

2008-09-16 Thread Lothar Kimmeringer
Eric Clayberg - Instantiations schrieb: > This has already been fixed in the latest build. See the e-mail that > our support group sent to you earlier. "Five minutes" after sending my email to google-groups to be exact ;-) (at 15:01 CEST, so a bit more than 5 minutes) > This problem actually onl

Re: Upgrade from 1.4.62 to 1.5 failed

2008-09-16 Thread cengaver
my error message becames like this. I'm still working on it but still not working. Any help will be appreciated! 16:46:24,564 INFO [RuleBase] parsing rules: /security.drl 16:46:24,892 INFO [Contexts] starting up: org.jboss.seam.web.session 16:46:24,955 ERROR [[/paragon]] Exception while dispa

Send a widget to the server?

2008-09-16 Thread Markuz05
Hi, I wonder if it's possible, and if it' a good choice send a widget to the server. My application is a typical CRUD application where users search data, edits and sends them back to the server. Data are displayed on the browser in tables. I created a complicated data-structure to store data in

Re: GWT Eclipse Plugin????

2008-09-16 Thread Eric Clayberg - Instantiations
This has already been fixed in the latest build. See the e-mail that our support group sent to you earlier. This problem actually only appeared in a few builds and was the result of trying to work around a problem with GWT-Ext. We backed out the work around and restored the original (correct) code

Re: GWT 1.5 Migration from GWT1.4

2008-09-16 Thread [EMAIL PROTECTED]
Dasa, There's a lot of posts and replies on the forum about this issue. Try searching for "Content-Type." -David On Sep 15, 11:10 am, dasa <[EMAIL PROTECTED]> wrote: > Hi, > > Iam getting following Exception while migrating my project from GWT1.4 > to GWT1.5. > > Can anyone help me on this issu

Re: Any ideas on how to make a popup stay on top?

2008-09-16 Thread Thomas Wrobel
This is odd, I just tried this at my end and it dosnt seem to work. Heres a screenshot of what I get: http://www.darkflame.co.uk/PopUpOrderingProblem.jpg Heres a 7zip of the whole test project: http://www.darkflame.co.uk/testproject.7z 2008/9/12 Thomas Broyer <[EMAIL PROTECTED]>: > > > > On 11

Re: Out of Memory Error During GWT compilation

2008-09-16 Thread Andrej
the reason is "Out of memory; to increase the amount of memory, use the -Xmx flag at startup" so try to increase memory (and/or ensure that you are _using_ -Xmx param.) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: Does the server side language matter?

2008-09-16 Thread Arthur Kalmenson
Hello Jim, > My favorite IDE is certainly not eclipse, and probably not the best to use > with Django. The server side can be quickly written and tested independent > of the client side. I consider that a plus. You misunderstood what gregor meant. Gregor meant that if you have a Java back-end, y

Re: new Double("1.0").toString() => "1.0" in GWTShell / in others => "1"

2008-09-16 Thread Lothar Kimmeringer
MN schrieb: > i know where it comes from, but i dont like the result of different > values. Then don't use toString. The behavior of toString is not always defined and especially with java.lang.Double I remember having had differences between different versions of the Java Virtual Machine (violat

Re: new Double("1.0").toString() => "1.0" in GWTShell / in others => "1"

2008-09-16 Thread MN
i know where it comes from, but i dont like the result of different values. i think it is a problem, if your development environment shows different values than in production. so you can not test or debug some situations etc. i can use NumberFormat, but this is a workaround. and i think only for

Out of Memory Error During GWT compilation

2008-09-16 Thread Bal Krishna
Hi All, I am using GWT in my application. My system is having 2GB RAM and I have around 2000 Java files to compile. During compiling the files, I am using JVM argument -Xmx1024M but my GWT compilation is failing and throwing this error. [java]Analyzing permutation #1 [java] [ERROR] Unex

Problem with Line Position in GWT Diagramming

2008-09-16 Thread mayoo
What is the line dimension of the StraightTwoEndedConnection? I save the StraightTwoEndedConnection objects in the array and iterate the array and check each position is overlapped with some widget.if it is overlapped, i want to remove the connection from the canvas. i use cp.getMy().remove(); cp

Re: GWT Eclipse Plugin????

2008-09-16 Thread Rajan Balakrishnan
I am using Eclipse Ganymede and Gwt-tooling provided by eclipseguru.org. I didn't find any problem. It allows to create dynamic web project and can deploy the project by directly publish to thw server and can start the GWT hosted mode application in any browser by setting the default browser in th

Basic Authentication with GWT RPC requests

2008-09-16 Thread Jerome Velociter
Hello everybody, I am wondering if there is any special configuration, anything special to do to have GWT RPC requests work properly with HTTP basic authentication. We have an application configured to work with basic auth, everything works fine but the GWT async requests : those last ones do not

GWT Compilation Time

2008-09-16 Thread Bal Krishna
Hi All, I am implementing I18 support for my application and I am using GWT I18 support. In my module file, I extended three locales and compilation time for my java files increased drastically. Earlier it was taking around 30-40 mins but after adding three locales in my module configuration file

Dynamic generated datya for download

2008-09-16 Thread husfeldt
I have some services (that I cannot or will not touch) that provides me with som JSON formatted data. This I use to show in tables, graphs etc.. But I would like to have a link/button next to the table.. "download as CSV" or download as XML or whatever.. Problem is that i need to process the data

Re: Invalid version number "null" when using the hosted mode

2008-09-16 Thread WildWarrior03
anybody found any solution? I am not using tomcat..I am not sure what is wrong..I also get the same error.. On Sep 5, 7:17 am, Noé <[EMAIL PROTECTED]> wrote: > It works now. I think it was because of the cache on tomcat. > > To achieve this, I erased all the temporary files on the web server.

GWT Developer

2008-09-16 Thread Bal Krishna
Hi All, I don't have very much experience of GWT. But I have some problems that I want to discuss. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to Goo

Need to call Login servlet from remote website to establish sessions

2008-09-16 Thread Nadir
Hi All... I have quite the dilemma on my hands which I originally thought would be simple and I'm hoping someone can help bail me out, but not like Lehman was bailed out please. ;) Background: Our webapp is currently 100% GWT & GWT-RPC based. The login page is a typicall username/password setup w

GWT Projects in Eclipse 3.4.0

2008-09-16 Thread Marcus
Hi all: I've been able to create the StockWatcher project and go through the tutorial. However, I'm having one difficulty with Eclipse. When I import the project into Eclipse (after running projectCreator & applicationCreator), I only see the Java files under the src tree. I do not see any xml

Getting User Input from Input Field

2008-09-16 Thread WebDude
I'm trying to get the text entered by a user in an "input" field. It works in IE and in Hosted Mode, but not in Firefox or Chrome. I'm using DOM.getElementAttribute to read the text. When it doesn't work, all I get is an empty string. I've made simple test case by modifying the template code g

Re: append new data in Livegrid

2008-09-16 Thread vruddhi shah
Hi Khoa, See this can be help to you... www.sample.gwt4enterprise.com Vruddhi On Mon, Sep 15, 2008 at 10:53 PM, Khoa <[EMAIL PROTECTED]> wrote: > > Hi, > > I am using Livegrid to display records from a database -- As new > records are inserted into a database (by another program), I would > lik

Re: GWT Eclipse Plugin????

2008-09-16 Thread Lothar Kimmeringer
alex.d schrieb: > Hmm... i'm using one of the latest builds (but not the very last) and > i do not have this problem. I was installing the current release of WindowBuilder Pro (containing designers for SWT and Swing as well) with date 2008.08.29. Funnily enough the version of the GWT designer in

Re: GWT Eclipse Plugin????

2008-09-16 Thread alex.d
Hmm... i'm using one of the latest builds (but not the very last) and i do not have this problem. On 16 Sep., 13:59, Lothar Kimmeringer <[EMAIL PROTECTED]> wrote: > alex.d schrieb: > > > The best one, imho, is GWT Designer. Has everything you need. Worth to > > take a look: > >http://www.instanti

Re: new Double("1.0").toString() => "1.0" in GWTShell / in others => "1"

2008-09-16 Thread Lothar Kimmeringer
MN schrieb: > the same problems i have with large double values: > new Double(600702589).toString() > => GWTShell: "6.00702589E8" > => all other browsers: "600702589" is that a problem? The GWTShell is used for development and the differents results from the fact that the GWTShell is actually exe

Re: new Double("1.0").toString() => "1.0" in GWTShell / in others => "1"

2008-09-16 Thread MN
the same problems i have with large double values: new Double(600702589).toString() => GWTShell: "6.00702589E8" => all other browsers: "600702589" i filed this as issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=2887 On 15 Sep., 15:27, MN <[EMAIL PROTECTED]> wrote: > great! th

Re: GWT Eclipse Plugin????

2008-09-16 Thread Lothar Kimmeringer
alex.d schrieb: > The best one, imho, is GWT Designer. Has everything you need. Worth to > take a look: > http://www.instantiations.com/windowbuilder/gwtdesigner/index.html I agree with you, but just a little information to avoid people wondering that try out the current version. The current ver

Re: Hibernate4GWT

2008-09-16 Thread Vivek Singhwal
Hi, Did you get sample for this? If not, then here is the sample example: http://gwt4enterprise.com/gwt_hibernate/GWT-Hibernate-Example.zip - You need to extend HibernateRemoteService in ServiceImpl and create a HibernateBeanManager there. check InsertServiceImpl.java. - Extends LazyGw

Re: GWT Eclipse Plugin????

2008-09-16 Thread alex.d
The best one, imho, is GWT Designer. Has everything you need. Worth to take a look: http://www.instantiations.com/windowbuilder/gwtdesigner/index.html On 16 Sep., 09:44, "olivier nouguier" <[EMAIL PROTECTED]> wrote: > Also cypalhttp://code.google.com/p/cypal-studio/ > > On Mon, Sep 15, 2008 at 5:

Reporting tool and GWT

2008-09-16 Thread Manik
Hi, I need any reporting tool which can be used with GWT. Is there any toolkit or gwt api for this purpose? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send emai

Re: Page renders diffrently on FireFox then IE7 and Chrome

2008-09-16 Thread Jonas
Hi, I think you might have a point here. I may have got the idea of HorizontalPanel backwards. I will try your approach and let you know. Thanks! Best regards, Jonas On 16 Sep, 11:53, Thomas Broyer <[EMAIL PROTECTED]> wrote: > On 16 sep, 09:24, Jonas <[EMAIL PROTECTED]> wrote: > > > Hi, just to c

Re: JSNI method '@com.google.gwt.dom.client.OptionElement::setLabel(Ljava/lang/String;)'

2008-09-16 Thread Thomas Broyer
On 16 sep, 09:57, Martin Trummer <[EMAIL PROTECTED]> wrote: > looks like a bug to me Yes, and it is also true of OptionElement::setDisabled. (the following regex didn't show others when ran on the gwt-user project: « native\s+void\s[^/]+\/\*-\{\s*return ») > On Sep 15, 6:33 pm, jchimene <[EMA

Re: Runtime pluggable modules/extensions

2008-09-16 Thread Stefan
After a bit of research, I discovered SOAFaces providing on-the-fly compilation. While this might solve some of the problems I described, it's no viable way to go, i think. Especially with large applications. Modules (Plug-ins/Extensions) we have would only need a one time compilation on installat

Re: Page renders diffrently on FireFox then IE7 and Chrome

2008-09-16 Thread Thomas Broyer
On 16 sep, 09:24, Jonas <[EMAIL PROTECTED]> wrote: > Hi, just to clarify... It's the field Anmärkning that renders > incorrectly in Firefox 3.0.1 on Windows XP Pro SP2 and SP3. In > Firefox, the field ORDLISTAN is inside field Anmärkning were as in IE7 > and Google Chrome it renders correctly, t

Re: Using local EJB interface from GWT's servlet

2008-09-16 Thread chris_wesdorp
Gregor, I will try the lookup with '/local', did not know how the local interface was named for JNDI and I could not see it in the JNDI browser in Glassfish. In the mean time I found the answer to my problems. The Dynamic Web Project was initially created with a web.xml with version 2.2. In the

Re: RemoteServiceServlet#doGetSerializationPolicy

2008-09-16 Thread daniel.z
Hi Adam. When looking in the source of RemoteServiceServlet you'll find the following comment in the doGetSerializationPolicy method: /* * Check that the module path must be in the same web app as the servlet * itself. If you need to implement a scheme different than this, override * this met

Re: JSNI method '@com.google.gwt.dom.client.OptionElement::setLabel(Ljava/lang/String;)'

2008-09-16 Thread Martin Trummer
looks like a bug to me On Sep 15, 6:33 pm, jchimene <[EMAIL PROTECTED]> wrote: > Hi, > > I'm seeing the following message: > [WARN] JSNI method > '[EMAIL PROTECTED]::setLabel(Ljava/lang/ > String;)' returned a value of type string but was declared void; it > should not have returned a value at al

Re: GWT Eclipse Plugin????

2008-09-16 Thread olivier nouguier
Also cypal http://code.google.com/p/cypal-studio/ On Mon, Sep 15, 2008 at 5:56 PM, Vivek Singhwal <[EMAIL PROTECTED]>wrote: > > You can try out VistaFei, http://www.wirelexsoft.com/VistaFei.html > It is a Eclipse version with GWT Plugin. > > Vivek > GWT4Enterprise.com > > > > > > > -- "Quand

Re: Does the server side language matter?

2008-09-16 Thread Lothar Kimmeringer
Hello Jim, Jim Freeze schrieb: > My comments are inline below. Of course, that's the way, quoting in mails should take place ;-) > Please pardon me if they > are not popular to the Java perspective. But don't be surprised if GWT-applications are now popping up showing Google Maps with a crossh

Re: Page renders diffrently on FireFox then IE7 and Chrome

2008-09-16 Thread Jonas
Hi, just to clarify... It's the field Anmärkning that renders incorrectly in Firefox 3.0.1 on Windows XP Pro SP2 and SP3. In Firefox, the field ORDLISTAN is inside field Anmärkning were as in IE7 and Google Chrome it renders correctly, that is apart and not over another. Best regards, Jonas On 1