Information on the GWT1.6 Compared with GWT1.5

2009-04-01 Thread Ved
Hi, I have a query regarding the listners which are exposed by GWT1.6 API for the widgets Comparing the same with GWT 1.5 I have seen a drastic change in the listner API exposed by the GWT 1.6 for Eg: addClickListner is not present in GWT1.6 it has addClickHandler Can i know why these

Re: Compiling servlet classes

2009-04-01 Thread m...@gmail.com
Hi Sumit, I didn't forget to include the gwt-servlet.jar in the javac classpath, that's why I'm surprised of this error... Thanks ! Mathieu On 1 avr, 04:41, Sumit Chandel sumitchan...@google.com wrote: Hi Mathieu, Make sure you have the gwt-servlet.jar added to the javac classpath as well.

Gwt

2009-04-01 Thread jagadesh
hi guys , what is the use of load listener and how can i use it. how can i create a list box which have images as items Thank u, jagadesh --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Is there any other easy and faster way to add text to FlexTable?

2009-04-01 Thread Suren
Hi All, I am using FlexTable to populate 100 rows and each row has around 90 columns. below is my code to acheive that..But its very time consuming. please advise if anyother easy way to implement this also if anyother controls I can try out other than FlexTable. [code] public void

GWT 1.6 - How do I change the default war directory name

2009-04-01 Thread Jan
Dear GWT community, I am considering using GWT 1.6 in a project, but have one major concern: GWT 1.6 no longer places the public files (like the host page or the module XML) in the public sub directory of the root package but inside a war/module directory. As all my projects already exist and

1.6 Event handlers

2009-04-01 Thread magbyr
Hello. I'm having some trouble understanding the new event handlers. When creating a composite A containing widgets B and C, I want different events from B and C to create a ValueChangeEvent on A. This way other widgets using A can handle one event instead of two. A - ValueChangeHandler B -

Re: 1.62 cannot compile my project

2009-04-01 Thread Gilles B
I have the same problem, my previous app works fine with GWT 1.53, I download the last 1.6 (current is 1.6.3 RC) and remove all warnings about Listener, I first set xmx to 1024 because 512 was not enought for my application. This solve the problem temporarily and I keep on coding. No if I add

Re: How to create a live suggestion box using GWT-Ext

2009-04-01 Thread deeps
Hi actually basic combo box in Gwt-Ext is similar to suggestion box in Smart Gwt. I want to know how to implement it in live as done in google. kindly oblige... On Mar 27, 11:42 pm, wouter wouter.behe...@advalvas.be wrote: Can you tell what you already have and where you're stuck ?

Help me make my own Jar file with an interface, that can be shared between the client and a Java-based server

2009-04-01 Thread dduck
Hi, I am implementing a rather standard backend/frontend structure. My backend is implemented in Java. My frontend is implemented in GWT. I am using Eclipse. The frontend will be a simple viewer for some data, that will be accessed through an interface. I would like to package this interface

Re: FlexTable : how to get not wrapping text functionality

2009-04-01 Thread rudolf michael
Hello Suren, since you have a fixed width on your table then you need to wrap the text inside another html tag so it can be wrapped. keep the code as it is and try this f1.setHTML(0, 0, font class=\felxtabletd\ This is a very long text/font); On Wed, Apr 1, 2009 at 8:23 AM, Suren

Re: Deploying on tomcat

2009-04-01 Thread Radek Jun
It is a little bit weird :(. Are you sure that you have all the classes right in the WEB-INF/classes and libraries in WEB-INF/lib ? On Apr 1, 1:41 am, fatjack1...@googlemail.com fatjack1...@googlemail.com wrote: Hi, I have done this and now get a different error. This has changed from the

Left widget not visible in HorizontalSplitPanel

2009-04-01 Thread Neo
Hi, I am trying to add a HorizontalSplitPanel to a DecoratedTabPanel. In the DecoratedTabPanel I have set 3 tabs. I have the HorizontalSplitPanel in my second tab. On page load I want the first tab be displayed by default hence I have set : decoratedTabPanel.selectTab(0); (First tab and third

Re: What's the Easiest Way to Handle Server / Client Time differences?

2009-04-01 Thread Magius
It's a bit unclear, the problem with a day is because the difference of 4 hours? One way to manage dates, when all the users are in the same timezone, is to manage it as a String (mmdd for example). It's very clear for all developpers in the project (specially for junior ones). The best way

Re: Help me make my own Jar file with an interface, that can be shared between the client and a Java-based server

2009-04-01 Thread Thomas Broyer
On 1 avr, 10:28, dduck anders.johansen.a...@gmail.com wrote: Hi, I am implementing a rather standard backend/frontend structure. My backend is implemented in Java. My frontend is implemented in GWT. I am using Eclipse. The frontend will be a simple viewer for some data, that will be

Re: widgets within widgets

2009-04-01 Thread Paul Robinson
public class MyDiv extends FlowPanel { private MyButton button; public MyDiv(){ setStyle(); this.button = new MyButton(); this.add(button); } public MyDiv(String html) { setStyle();

Re: widgets within widgets

2009-04-01 Thread alan m
To be even clearer, in MyDiv I added public MyDiv (String html, ClickListener listener){ super(); setStyle(); MyButton button = new MyButton(html, listener); button.addClickListener(listener);

Re: 1.6 Event handlers

2009-04-01 Thread Thomas Broyer
On 1 avr, 09:28, magbyr mag...@gmail.com wrote: Hello. I'm having some trouble understanding the new event handlers. When creating a composite A containing widgets B and C, I want different events from B and C to create a ValueChangeEvent on A. This way other widgets using A can handle

Re: Compiling servlet classes

2009-04-01 Thread Thomas Broyer
On 1 avr, 08:09, m...@gmail.com mathieu.eveill...@gmail.com wrote: Hi Sumit, I didn't forget to include the gwt-servlet.jar in the javac classpath, that's why I'm surprised of this error... Er, gwt-servlet does *not* include the javax.servlet classes (it's meant do be deployed in your

Left widget of HorizontalSpliPanel is not visible

2009-04-01 Thread Neo
I have created a DecoratedTabPanel with three tabs. Tab 1 and Tab 3 have some basic widgets. In the second tab I have added a HorizontalSpliPanel to the DecoratedTabPanel. On load I want to display the first tab by default. I have used the following code to add the HorizontalSpliPanel :

RPC Serializable problem

2009-04-01 Thread jba...@googlemail.com
I am working on a gwt-Evaluation project and we are working with smartgwt, our first goal was to simply make a GUI working with local TestData. Now we are supposed to split the client code from the TestData which should be moved to the server. So I need to make RPC calls to get the necessary data

Re: Information on the GWT1.6 Compared with GWT1.5

2009-04-01 Thread Thomas Broyer
On 1 avr, 11:31, Jason Morris lem...@gmail.com wrote: On the surface, a Handler is just a Listener, but with only 1 event method. Event Handlers also don't have a removeOnClickHandler method, instead the add method returns a registration object that can be used to de-register that

Re: widgets within widgets

2009-04-01 Thread alan m
That's it, thanks Paul! I guess using this.button = new MyButton(); makes button a property of MyDiv so I can then use button's methods from this class - this.button.addClickListener et.c. Is this conceptually correct? I'm still learning OOP as you can tell! ;-) Much obliged, Alanj On Wed, Apr

Re: Why not use applets?

2009-04-01 Thread Rockster
I don't want to think of a situation where you have to install plugins to use your webapplications. Don't get me wrong, I like Adobe Flex. But doesn't run on any device (read: phone!) Now I can walk with my iPhone and access almost any application. Javascript nowadays seems almost as fast as

Re: Window.Location.replace() doesn't work in Safari or Chrome or Opera

2009-04-01 Thread Thomas Broyer
On 1 avr, 01:54, Ian Bambury ianbamb...@gmail.com wrote: 2009/3/31 Thomas Broyer t.bro...@gmail.com Depends what original token is defined to be ;-) if it is History.getToken(), then I'm back to my earlier proposal: propagate a is default flag. I'm happy for you to define 'original

Re: widgets within widgets

2009-04-01 Thread Paul Robinson
alan m wrote: That's it, thanks Paul! I guess using this.button = new MyButton(); makes button a property of MyDiv so I can then use button's methods from this class - this.button.addClickListener et.c. Is this conceptually correct? I'm still learning OOP as you can tell! ;-) Much obliged,

Re: Java Objects not Seen in Javascript

2009-04-01 Thread Thomas Broyer
On 1 avr, 04:00, Homeopath1 oliphant.christop...@gmail.com wrote: That is not my problem. The code I have ported to GWT Java does not reply on Javascript API's. It is just some fairly basic code. My problem is not being able to find the Java objects that I created in the compiled JS code.

Re: Is there any other easy and faster way to add text to FlexTable?

2009-04-01 Thread Thomas Broyer
On 1 avr, 09:20, Suren nsurendi...@gmail.com wrote: Hi All, I am using FlexTable to populate 100 rows and each row has around 90 columns. First, if you know in advance the size of your grid and you do not need cells spanning multiple columns or rows, consider using a Grid rather than

Re: widgets within widgets

2009-04-01 Thread alan m
Thanks Luke, But actually doing that in MyDiv causes a compilation error: cannot find symbol symbol : method addClickListener(anonymous com.google.gwt.user.client.ui.ClickListener) location: class com.dds.gwt.widgets.client.ui.MyDiv Just to be clear, MyButton already has listeners set up

Re: AJAX app stuck when running Selenium RC

2009-04-01 Thread Stefan Hübner
To proof that Selenium does disrupt application execution I've modified the application so that it sends messages to the server in 1000ms intervalls. Those messages should get logged in the webserver log. Now if I open the deployed application messages appear in the log as expected. If I then

Re: Announcing GWT 1.6 RC2

2009-04-01 Thread Thomas Broyer
On 1 avr, 05:52, C.H. ptit...@gmail.com wrote: New Features    ...faster compilation... How much faster compilation compare to 1.5? AFAICT, compiling a given permutation isn't faster than in 1.5 but permutations are now compiled in parallel threads.

Re: Information on the GWT1.6 Compared with GWT1.5

2009-04-01 Thread Jason Morris
On the surface, a Handler is just a Listener, but with only 1 event method. Event Handlers also don't have a removeOnClickHandler method, instead the add method returns a registration object that can be used to de-register that handler. Underneath, Handlers are a very different beast. All of

Re: Deploying on tomcat

2009-04-01 Thread fatjack1...@googlemail.com
I have only placed the server and database packages in the WEB-INF/ classes folder i.e. I did not place the client package or the public package in here. Is this wrong? Regards, Jack On Apr 1, 9:38 am, Radek Jun radek@gmail.com wrote: It is a little bit weird :(. Are you sure that you have

Re: widgets within widgets

2009-04-01 Thread alan m
I hear you. Apologies to list for noob-ishness. Thanks for your help. Regards, Alanj On Wed, Apr 1, 2009 at 11:38 AM, Paul Robinson ukcue...@gmail.com wrote: alan m wrote: That's it, thanks Paul! I guess using this.button = new MyButton(); makes button a property of MyDiv so I can then use

Re: Deploying on tomcat

2009-04-01 Thread Isaac Truett
Yes, it's wrong. Your servlet implements the ServerStatusSQLService interface, so that class has to be deployed with the server classes. On Wed, Apr 1, 2009 at 5:23 AM, fatjack1...@googlemail.com fatjack1...@googlemail.com wrote: I have only placed the server and database packages in the

Re: eclipse is launching forever

2009-04-01 Thread ytbryan
I mean that the elicpse is still at launching stage (launching 2%.) and the hosted browser still didn't show up... i wonder what is the bottle neck? anybody has a clue or a fix? On Mar 24, 4:59 pm, alex.d alex.dukhov...@googlemail.com wrote: Switch focus between hosted browser and eclipse

Re: 1.62 cannot compile my project

2009-04-01 Thread Isaac Truett
You need to increase stack size (-Xss). On Wed, Apr 1, 2009 at 3:46 AM, Gilles B gilles.broch...@gmail.com wrote: I have the same problem, my previous app works fine with GWT 1.53, I download the last 1.6 (current is 1.6.3 RC) and remove all warnings about Listener, I first set xmx to

Re: FlexTable : how to get not wrapping text functionality

2009-04-01 Thread Suren
Hi Rudolf, Ok I agree with that I have the fixed width, but see below what I have now, FlexTable f1 = new FlexTable(); f1.setHTML(0, 0, font class=\felxtabletd\ This is a very long text/font); f1.setBorderWidth(2); RootPanel.get().add(f1); Even now its is not working.. Thanks Suren On Apr 1,

Re: Deploying on tomcat

2009-04-01 Thread fatjack1...@googlemail.com
Hi there, Thanks for your help. That has fixed my last problem, now I am getting a new one... 01-Apr-2009 13:38:15 org.apache.catalina.core.ApplicationContext log SEVERE: Exception while dispatching incoming RPC call com.google.gwt.user.server.rpc.UnexpectedException: Service method 'public

Re: Deploying on tomcat

2009-04-01 Thread Isaac Truett
And what have you done so far to try to solve this problem? On Wed, Apr 1, 2009 at 8:48 AM, fatjack1...@googlemail.com fatjack1...@googlemail.com wrote: Hi there, Thanks for your help. That has fixed my last problem, now I am getting a new one... 01-Apr-2009 13:38:15

Re: Deploying on tomcat

2009-04-01 Thread fatjack1...@googlemail.com
I have managed to fix this problem. It turned out that the MySQL JAR had been removed. Thanks for all your help! Regards, Jack On Apr 1, 1:57 pm, Isaac Truett itru...@gmail.com wrote: And what have you done so far to try to solve this problem? On Wed, Apr 1, 2009 at 8:48 AM,

Re: Left widget of HorizontalSpliPanel is not visible

2009-04-01 Thread Ian Bambury
Hi, It doesn't work. It's worse in the non-IE browsers, you can't even manually drag the split. A lot of the layout kind of widgets with 'moving parts' (Tab, Split, Disclosure, StackPanel and the like) simply don't work if nested inside another one of these kinds of panels. Google don't seem to

integrate google map

2009-04-01 Thread asianCoolz
is the only way to integrate with google map is using this library http://sourceforge.net/projects/gwt/ ? but the project seems no active anymore. which library you folks are using ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to

Re: integrate google map

2009-04-01 Thread Eric Ayers
Try the gwt_maps library @ http://code.google.com/p/gwt-google-apis On Wed, Apr 1, 2009 at 10:02 AM, asianCoolz second.co...@gmail.com wrote: is the only way to integrate with google map is using this library http://sourceforge.net/projects/gwt/ ? but the project seems no active anymore.

Re: DatePicker and keyboard navigation?

2009-04-01 Thread Jason Essington
I had at one point a version of DatePicker that had keyboard navigation built in (it'd even skip disabled dates), so it is possible. -jason On Mar 31, 2009, at 10:52 PM, nina wrote: Hello there Does anyone know if it's possible, or will be a future feature, to have keyboard support for

Problem while using -OnClickHandler for Event double click

2009-04-01 Thread Ved
Hi, I am trying to catch a Double click event but unable to catch it on a Label i have tried the by adding the following code to my class final Label la=new Label(New Label); la.sinkEvents(Event.ONCLICK | Event.ONDBLCLICK |Event.ONKEYDOWN );

Re: Problem while using -OnClickHandler for Event double click

2009-04-01 Thread Ved
Sorry all, The message was incomplete. and i also tried to get the Native Event by the following code labelObject.addClickHandler(new ClickHandler(){ public void onClick(ClickEvent event) { if(event.getNativeEvent().getButton()==Event.BUTTON_RIGHT)

Re: Announcing GWT 1.6 RC2

2009-04-01 Thread Scott Blum
We also cache the results of an earlier phase in the compile, so even if you're running a single thread, it should be marginally faster than 1.5. On Wed, Apr 1, 2009 at 4:50 AM, Thomas Broyer t.bro...@gmail.com wrote: On 1 avr, 05:52, C.H. ptit...@gmail.com wrote: New Features

Re: Left widget of HorizontalSpliPanel is not visible

2009-04-01 Thread Neo
Hi Ian, Thats really sad to hear :(. Any possible workarounds ? On Apr 1, 7:01 pm, Ian Bambury ianbamb...@gmail.com wrote: Hi, It doesn't work. It's worse in the non-IE browsers, you can't even manually drag the split. A lot of the layout kind of widgets with 'moving parts' (Tab, Split,

Mouse handler in GWT1.6 issue

2009-04-01 Thread LOKESH KUMAR
Hi, I am working with GWT with added Plugable features like DND and ENT. Presently i am facing a problem while using the GWT Listners on the Label. As per my Understanding the GWT 1.6 Version has changed the listner handling style, which is more inline with the JavaScript Standards (Not fully

Re: Left widget of HorizontalSpliPanel is not visible

2009-04-01 Thread Ian Bambury
2009/4/1 Neo deepak.krv2...@gmail.com Hi Ian, Thats really sad to hear :(. Any possible workarounds ? Not really. These widgets (at least the ones I looked at in 1.5, and probably 1.6 as well or they'd have fixed it) set their child widgets up while detached, so percentage sizes don't work

Re: Left widget of HorizontalSpliPanel is not visible

2009-04-01 Thread Neo
Thanks Ian. Lets wait. :) On Apr 1, 8:01 pm, Ian Bambury ianbamb...@gmail.com wrote: 2009/4/1 Neo deepak.krv2...@gmail.com Hi Ian, Thats really sad to hear :(. Any possible workarounds ? Not really. These widgets (at least the ones I looked at in 1.5, and probably 1.6 as well or

Re: GWT 1.6 - How do I change the default war directory name

2009-04-01 Thread Jason Essington
use the switch -war WebContent -jason On Apr 1, 2009, at 12:46 AM, Jan wrote: Dear GWT community, I am considering using GWT 1.6 in a project, but have one major concern: GWT 1.6 no longer places the public files (like the host page or the module XML) in the public sub directory of the

Wanted: Ext-GWT (GXT) coder who can hit the ground running

2009-04-01 Thread DaBlick
Spiral Universe is seeking an experienced expert Ext-GWT (GXT) developer to join our company in developing a cutting-edge school management, social networking, and education-based RIA. We are developing hundreds of screens and need someone to join our existing team and hit the ground running

Re: Announcing GWT 1.6 RC2

2009-04-01 Thread Дмитрий Николаев
Ubuntu 8.10/ java 1.6 u12 Samples DynaTable Showcase won't compile. Output for DynaTable: $ ant build Buildfile: build.xml libs: javac: [javac] Compiling 8 source files to /home/dima/bin/gwt/gwt- linux-1.6.3/samples/DynaTable/war/WEB-INF/classes [javac]

RPC Serialization

2009-04-01 Thread Edu
I was using IsSerializable Interface until i read an article on gwt home page saying that i could use the java.io.Serializable interface, since i was using a generic servlett dispatch all my incoming resquest, the java.io.Serializable was much easier to use, so i changed all my classes that

Multi-module application: load module on request

2009-04-01 Thread JK
Hi All, I’ve read a lot of discussions related to multi-module applications but I still don’t have a solution for my problem. In a nutshell I would like to make 2-module application in which one module is loaded immediately and the second one is loaded when user requests functionality stored in

Re: Acces to GWT JavaDoc in Eclipse

2009-04-01 Thread Danny Schimke
Hi Stefan! You are right: I've removed gwt-servlet from the POM dependencies of the corresponding project, because I don't need it yet. If I need this I will create a separate server/backend- project which does. And now I have access to the JavaDoc. Thank you very much! -Danny 2009/4/1 Stefan

Re: RPC Serialization

2009-04-01 Thread Paul Robinson
Edu wrote: I was using IsSerializable Interface until i read an article on gwt home page saying that i could use the java.io.Serializable interface, since i was using a generic servlett dispatch all my incoming resquest, the java.io.Serializable was much easier to use, so i changed all my

Re: Help me make my own Jar file with an interface, that can be shared between the client and a Java-based server

2009-04-01 Thread dduck
This means you'd have to put a gwt.xml at some package level containing the interface and inherit it from your GwtResults.gwt.xml. e.g. in dk/ange/orion/gwt, create Models.gwt.xml file with source path=models /, and in your GwtResult.gwt.xml add an inherits name=dk.ange.orion.gwt.Models /

Re: RPC Serialization

2009-04-01 Thread Edu
GWT is gonna look for serializable classes even outside the client package??? I double checked all my classes in the project and all of them meet the needs for serialization. I understand that i have to be as specific as possible with RPC but i don't wanna have a bunch of services on my project

IE error can't debug!

2009-04-01 Thread flyingb...@gmail.com
When i run the debugger, everything runs fine. however, when I try using ie itself I sometimes get. 540 function com_google_gwt_dom_client_Element_is__Lcom_google_gwt_core_client_JavaScriptObject_2 (o){ 541 if (o.nodeType) { 542 return o.nodeType == 1; 543 } 544 return false; 545 }

Re: JavaScriptException - Type Error: Type mismatch - Please help

2009-04-01 Thread Jason
If anyone knows why this is happening.. please reply.. Thanks! On Mar 30, 11:47 pm, bronze...@gmail.com bronze...@gmail.com wrote: Hi all A question in regard of the method, createTextNode, in DocumentImpl. So I invoked the method, and I happened to come across a case where I pass in the a

Re: IE error can't debug!

2009-04-01 Thread flyingb...@gmail.com
Oh ya, after this error happens, nothing is clickable anymore. On Apr 1, 9:48 am, flyingb...@gmail.com flyingb...@gmail.com wrote: When i run the debugger, everything runs fine. however, when I try using ie itself I sometimes get. 540 function

Re: IE error can't debug!

2009-04-01 Thread flyingb...@gmail.com
When the script debugor editor runs it shows this: function com_google_gwt_event_shared_HandlerManager_ $fireEvent__Lcom_google_gwt_event_shared_HandlerManager_2Lcom_google_gwt_event_shared_GwtEvent_2 (this$static, event){ var oldSource; if (event.com_google_gwt_event_shared_GwtEvent_dead) {

Re: IE error can't debug!

2009-04-01 Thread Vitali Lovich
Not sure what you mean - what debugger? The proper way of debugging GWT is to run it in hosted mode, where it's your Java code that's being executed. On Wed, Apr 1, 2009 at 12:55 PM, flyingb...@gmail.com flyingb...@gmail.comwrote: When the script debugor editor runs it shows this: function

Re: Gwt

2009-04-01 Thread Adam T
LoadListener (or rather you should use LoadHandler from GWT 1.6 onwards) allows you to handle an onLoad event from widgets that implement the HasLoadHandlers interface. For example, if you have an Image widget, then you can apply a LoadHandler to perform some functionality once the image has

Re: IE error can't debug!

2009-04-01 Thread flyingb...@gmail.com
But that does not show any errors at all. When I run the hosted mode debugger no problems show up. It only happens when I am using IE. Does not happen in the debug host mode thing. even though alert box says it is internet explorer. On Apr 1, 9:59 am, Vitali Lovich vlov...@gmail.com wrote:

Re: RPC Serialization

2009-04-01 Thread Paul Robinson
Edu wrote: GWT is gonna look for serializable classes even outside the client package??? I double checked all my classes in the project and all of them meet the needs for serialization. I understand that i have to be as specific as possible with RPC but i don't wanna have a bunch of

Re: RPC Serialization

2009-04-01 Thread tetsuo
actually i dont know the differences between isserializable or serializable, but i catched, that the compilation of the whole program results errors. so i split up the client and server side in two workspaces and prepare the interfaces/service in plain for the client compilation. on the

What is the easier way to deploy a GWT application to Tomcat using Eclipse?

2009-04-01 Thread Fabrício Cabral
Hello all, I'm using Eclipse Ganymede (latest), JDK 6 update 13, Tomcat 6.0.18 and GWT 1.5.3. So, I'm looking for the easier way to deploy a GWT application to Tomcat usint Eclipse IDE. If I use the projectCreator/applicationCreator commands, I can't do the Export - WAR file, because Eclipse

Re: GWT + MySQL

2009-04-01 Thread tetsuo
you need at least a server for the transaction between the gui (browser) and the dbms. some uses apache.tomcat or some other java servlet/container/application server. some are using php with extjs, but never let some js on your db. try using json or rpc. if you code the access codes in plain

Re: What is the easier way to deploy a GWT application to Tomcat using Eclipse?

2009-04-01 Thread tetsuo
try using the jboss as tools you can download them in eclipse via software update maybe that link helps you http://www.jboss.org/tools/download.html after the restart of eclipse you can use another view, where you can bind the tomcat server and deploy your stuff (hot or not) anyhow, try to spend

Re: IE error can't debug!

2009-04-01 Thread Vitali Lovich
The hosted mode browser is some hacked up version of IE6 AFAIK. I am going to say that even if you compile in DETAILED mode, trying to track down a problem in the javascript code itself is pretty difficult - probably a waste of time. Try putting logging statements in your code (either log to

Re: Compiling servlet classes

2009-04-01 Thread Sumit Chandel
Hi Mathieu, Please follow Thomas' advice in his last post. I must have been sleep typing that night :-) Cheers, -Sumit Chandel On Wed, Apr 1, 2009 at 2:24 AM, Thomas Broyer t.bro...@gmail.com wrote: On 1 avr, 08:09, m...@gmail.com mathieu.eveill...@gmail.com wrote: Hi Sumit, I didn't

Re: IE error can't debug!

2009-04-01 Thread flyingb...@gmail.com
I think my last msg didnt post. I think I figure out the problem. It has to do with DialogBox. I had old code that I wasn't using anymore. It should not do anything though. I not sure why it is causing an error in the program. But it is caused by the dialogbox i think

A thought about GWT project structure

2009-04-01 Thread Ken
In GWT recommended project structure, client code and server code are placed in one project. I find this structure is not so development- friendly in practice. (GWT 1.6 has some new update to the project structure to make it more like standard WAR project, but client and server code are still in

Re: GWT 1.6 - How do I change the default war directory name

2009-04-01 Thread Jan
Thank you very much! That's easier than expected. Best regards, Jan. On Apr 1, 5:36 pm, Jason Essington jason.essing...@gmail.com wrote: use the switch -war WebContent -jason On Apr 1, 2009, at 12:46 AM, Jan wrote: Dear GWT community, I am considering using GWT 1.6 in a project,

GWT Programmer Wanted

2009-04-01 Thread mike177
Hello, We are looking for an exprienced GWT developper with visible references to work on www.homeprodigy.com. This might develop into a long term relationship once this project is completed. Please contact me with expected hourly rate to discuss. Thanks, Mike

Re: Back Refresh button handling

2009-04-01 Thread bigtruckdriver
I do have some server-side cleanup functionality which is basically a session expiry, but this application is going to be needing every advantage it can get in terms of server memory, so I need this close window cleanup to occur as well (even though it's not a guarantee that it will work every

Re: Announcing GWT 1.6 RC2

2009-04-01 Thread Scott Blum
2009/4/1 Дмитрий Николаев blacklit...@gmail.com $ ant build Buildfile: build.xml libs: javac: [javac] Compiling 8 source files to /home/dima/bin/gwt/gwt-linux-1.6.3/samples/DynaTable/war/WEB-INF/classes Compiling 8 source files? Can you do an ant clean and see if that fixes it?

Re: A thought about GWT project structure

2009-04-01 Thread flyingb...@gmail.com
Well my gwt project I seperated the client and server side. The main thing that is possible if it was one project is passing objects stright to the server. So my project use json to create objects when the client ask for stuff from the server. There might be ways to have the object passing but

can inlineHTML be used to load static HTML pages?

2009-04-01 Thread myapplicationquestions
can inlineHTML be used to load static HTML pages? I want to harness the power of HTML designing tools to generate static HTML but use GWT to load the widget. Please note that there may be some actions defined in static html. Basically my application has number of widgets some of which are coded

PopupPanel Align Right

2009-04-01 Thread WebDude
Is it possible to align a PopupPanel with the right side of the window or the right side of a panel? I know that it could be done by getting the size of the window and setting the position of the PopupPanel based on that. However, if window is re-sized, the popup won't move with the re-size.

Define a javax.sql.DataSource in GWT 1.6 RC2

2009-04-01 Thread polbat02
My question is simple... how do I define a new DataSource (to connect to a DataBase) in Hosted Mode in the new GWT 1.6 RC2?? I tried with this in a jetty-env.xml file and in a context.xml file: resource-ref descriptionMy DataSource Reference/description

Re: Define a javax.sql.DataSource in GWT 1.6 RC2

2009-04-01 Thread polbat02
By the way, the error I get is this one: javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial at

integrate geoIP+google map

2009-04-01 Thread asianCoolz
is there any pre-built library availble for GWT ? or maybe sample? --~--~-~--~~~---~--~~ 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

Re: Back Refresh button handling

2009-04-01 Thread Vitali Lovich
Oh, and your requirement seems like premature optimization or you need to rethink your architecture. There is no way that keeping track of a session handle should be taking up any memory on the client side. You should be using database for your persistance layer - the database should cache your

Re: Back Refresh button handling

2009-04-01 Thread Vitali Lovich
GWT is javascript. You can leverage all your Javascript code from the GWT framework. That being said, you're pretty much SOL on notifying the server on a page refresh. I believe, although not 100% sure, that you cannot do anything* while the page is closing (which is what happens from the

Re: integrate geoIP+google map

2009-04-01 Thread asianCoolz
by the way is the only availble source is maxmind or there are other free provider? On Apr 2, 10:11 am, asianCoolz second.co...@gmail.com wrote: is there any pre-built library availble for GWT ? or maybe sample? --~--~-~--~~~---~--~~ You received this message

Re: Why not use applets?

2009-04-01 Thread Adligo
I have to agree after many years writing applets, web start or otherwise there just a pain to get installed sometimes (perhaps due to microsoft perhaps not). Jnlp will throw different exceptions on different os's exc. For example http://www.adligo.com/#treedemo Bottom swing link, worked fine on

gwt template

2009-04-01 Thread asianCoolz
which template library do u folks recommend ? i found few at http://code.google.com/p/gwt-templates/ http://jawspeak.com/2008/11/29/introducting-jaws-very-simple-gwt-html-template/ which one is more flexible? --~--~-~--~~~---~--~~ You received this message

Re: Announcing GWT 1.6 RC2

2009-04-01 Thread Дмитрий Николаев
ant clean not helped On 2 апр, 01:07, Scott Blum sco...@google.com wrote: 2009/4/1 Дмитрий Николаев blacklit...@gmail.com $ ant build Buildfile: build.xml libs: javac:    [javac] Compiling 8 source files to /home/dima/bin/gwt/gwt-linux-1.6.3/samples/DynaTable/war/WEB-INF/classes

Re: Gwt

2009-04-01 Thread jagadesh
Thank 's Adam i will work on this. --~--~-~--~~~---~--~~ 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 group,

[gwt-contrib] [google-web-toolkit commit] r5143 - SQUASH into collections; changes based on feedback from Lex.

2009-04-01 Thread codesite-noreply
Author: sco...@google.com Date: Wed Apr 1 11:15:15 2009 New Revision: 5143 Modified: changes/scottb/memory/dev/core/src/com/google/gwt/dev/util/collect/HashMap.java changes/scottb/memory/dev/core/src/com/google/gwt/dev/util/collect/HashSet.java

[gwt-contrib] Re: Add StyleInjector to GWT trunk

2009-04-01 Thread rjrjr
http://gwt-code-reviews.appspot.com/15803/diff/1/4 File user/src/com/google/gwt/dom/client/StyleInjector.java (right): http://gwt-code-reviews.appspot.com/15803/diff/1/4#newcode42 Line 42: return injectStyleSheet(contents); You're ignoring element. How can you get away with that? Your public

[gwt-contrib] [google-web-toolkit commit] r5148 - CurrencyListGenerator was iterating over a HashMap, causing inconsisent results.

2009-04-01 Thread codesite-noreply
Author: sco...@google.com Date: Wed Apr 1 12:11:24 2009 New Revision: 5148 Modified: trunk/user/src/com/google/gwt/i18n/rebind/CurrencyListGenerator.java Log: CurrencyListGenerator was iterating over a HashMap, causing inconsisent results. Replaced with a TreeMap. Review by: spoon

[gwt-contrib] [google-web-toolkit commit] r5151 - Refactor of TypeOracle's AbstractMembers, Members, DelegatingMembers to use less memory.

2009-04-01 Thread codesite-noreply
Author: sco...@google.com Date: Wed Apr 1 12:13:09 2009 New Revision: 5151 Modified: trunk/dev/core/src/com/google/gwt/core/ext/typeinfo/AbstractMembers.java trunk/dev/core/src/com/google/gwt/core/ext/typeinfo/DelegateMembers.java

[gwt-contrib] [google-web-toolkit commit] r5147 - Added infrastructure to profile compiler memory usage.

2009-04-01 Thread codesite-noreply
Author: sco...@google.com Date: Wed Apr 1 12:11:09 2009 New Revision: 5147 Added: trunk/dev/core/src/com/google/gwt/dev/util/Memory.java Modified: trunk/dev/core/src/com/google/gwt/dev/Compiler.java trunk/dev/core/src/com/google/gwt/dev/Precompile.java

[gwt-contrib] [google-web-toolkit commit] r5152 - Added cautionary note to update-jdt.py to prevent future breaks.

2009-04-01 Thread codesite-noreply
Author: sco...@google.com Date: Wed Apr 1 13:01:03 2009 New Revision: 5152 Modified: tools/lib/eclipse/update-jdt.py Log: Added cautionary note to update-jdt.py to prevent future breaks. Modified: tools/lib/eclipse/update-jdt.py

[gwt-contrib] [google-web-toolkit commit] r5154 - Fixed a couple of compile errors in code museum.

2009-04-01 Thread codesite-noreply
Author: jlaba...@google.com Date: Wed Apr 1 14:09:36 2009 New Revision: 5154 Modified: trunk/reference/code-museum/src/com/google/gwt/museum/client/defaultmuseum/Issue1932.java trunk/reference/code-museum/src/com/google/gwt/museum/client/defaultmuseum/VisualsForEventsFiring.java

  1   2   >