Re: Need to define common CSS Properties for components for entire application

2009-07-28 Thread caps
Kamal, I am thinking similar but I want to reuse the gwt-provided css properties of components. e.g; Buttons have button.css (css of gwt-ext) and from that I want to use certain class. I want to inherit some properties of gwt provided css and override some of them into my css file according to

Re: Need to define common CSS Properties for components for entire application

2009-07-28 Thread Kamal Chandana Mettananda
Say there's a button.css file provided with gwt-ext as follows. .button-1 {...} .button-2 {...} Now if you want to reuse above classes, I think you can just use them as in normal cases. If you want to override them, you'll have to create a css class with the same name and set the attributes

Re: Need to define common CSS Properties for components for entire application

2009-07-28 Thread Bhavesh Shah
What I understood is, It is not necessary that my class should be in style.css file. I can override them in the same button.css file and use them. I will just try it out. Thanks Kamal for help. On Jul 28, 12:06 pm, Kamal Chandana Mettananda lka...@gmail.com wrote: Say there's a button.css

not getting post reply from Servlet

2009-07-28 Thread saurabh
Hello here is my code for Interface public class LoginApplication implements EntryPoint { public void onModuleLoad() { final FormPanel form = new FormPanel(); form.setEncoding(FormPanel.ENCODING_MULTIPART);

Passing a javascript object as parameter to java method

2009-07-28 Thread rohit a
Hi, I need to pass a javascript object that i get from a remote method call to seam to the java method in gwt. Right now i am trying to pass the javascript object to a method which takes a JavaScriptObject as parameter. I am unable to call the methods in my js object with the

how do send the user name and password to the server?

2009-07-28 Thread jaimon
hi, i am pretty new to GWT and in general to web programming, so any help would be appreciated.. i would like to create a simple welcom page with a user name and password, and i have few questions: a. authentication: how do safly send the user/password to the server? and how my php code on the

Re: Passing a javascript object as parameter to java method

2009-07-28 Thread olivier nouguier
Hi Did you follow those instruction ? http://code.google.com/webtoolkit/doc/1.6/DevGuideCodingBasics.html#DevGuideJavaScriptNativeInterface HIH On Tue, Jul 28, 2009 at 8:26 AM, rohit a attamro...@gmail.com wrote: Hi, I need to pass a javascript object that i get from a remote method

Re: save form data in database

2009-07-28 Thread Tobe
I want to save the data into my own MySQL database and not in the datastore --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: PHP in hosted mode

2009-07-28 Thread Tobe
can nobody tell me where this file is? On Jul 24, 6:28 pm, Tobe tobias.jungnic...@googlemail.com wrote: Hi, I want to use GWT in a PHP project but can't find files like project- name-shell or com.google.com.gwt.dev.GWTShell. I'm using GWT 1.6.4 with Eclipse on Mac OS X.

Re: Passing a javascript object as parameter to java method

2009-07-28 Thread rohit a
Yes i was able to do it after reading overlays. It was tedious to write a wrapper for every javascript object extending the JavaScriptObject. Anyways thanks for the quick reply. --~--~-~--~~~---~--~~ You received this message because you are subscribed to

Re: how do send the user name and password to the server?

2009-07-28 Thread brett.wooldridge
a. For a regular, non-financial application, I would use https to send the authentication data. If you are using PHP on the server-side, I would use JSON to perform the transfer. See the GWT JSON documentation. b. Whenever possible avoid page loads. That's one of the main features of AJAX.

Re: save form data in database

2009-07-28 Thread brett.wooldridge
I run MySQL with a C3P0 connection pool in front of it. This is what I did [almost] verbatim. This is assuming you're running Jetty and servlets/RPC. 1. In your war/WEB-INF/lib put the c3p0 jar. Get C3P0 from here http://sourceforge.net/projects/c3p0. 2. In your war/WEB-INF/lib put the

GWTDatePicker problem

2009-07-28 Thread Joakim Sjöberg
Hello! I have run across a problem using WebDriver for automatic testing of our GWT application. On certain fields we are using the GWT DatePicker, and now when I am auto scripting in WebDriver I can´t add a date to that field since its keep popping up a Calendar. Is there anyone who

How to include js scripts from JAR?

2009-07-28 Thread Andrey
Hi, I'm looking for something like Spring's ResourceServlet , a way to get static JS files from packaged jar in lib/ directory of my Tomcat server. I'm using GWT-Ext and currently all ext-JS files are copied to my GWT App WAR, so it becomes heavy. I tried to write my own servlet, but it never

Regarding applying Border to Flextable Cells

2009-07-28 Thread Swathi Kondepati
Hi All.. I Had problem with applying border to cells of an flextable.Please help me.Actually the Problem is : I applied border to FlexTable cells using CSS styles but i am not able to view the border for FlexTable cells in *Mozilla FireFox* but able to view in IE.The cells contain

Re: Connecting GWT with XML or MYSQL... HELP!

2009-07-28 Thread Sean
I connect to a MYSQL DB on my server using GWT's RPC's. In the interface's Impl method on the server side is where I connect to the DB, execute the queries and then return the results. Works great. Another option for you to look at. On Jul 28, 1:41 am, Kamal Chandana Mettananda lka...@gmail.com

Re: Differences between Firefox and IExplorer

2009-07-28 Thread Sean
You shouldn't have to compile the source code differently depending on the browser. Depending on what browser is loading the main javascript (which GWT gets compiled into), a special .js is loaded for that browser. That being said, some times I've personally noticed things like formatting have

How to flip vertically a Label Value in GWT

2009-07-28 Thread Swathi Kondepati
Hi All.. I Had problem with applying styles to a Label.Please help me.Actually the Problem is : I applied filter style to Label using CSS styles but i am not able to view the label flip in *Mozilla FireFox* but able to view in IE.The code looks like: *Label label=new Label(Welcome);

Re: Long running Timer RPC issue

2009-07-28 Thread brett.wooldridge
I suspect you've touched upon a subtle bug involving the translation of Java anonymous inner-classes and JavaScript garbage collection. There is a subtle co-dependency between the anonymous Timer and the anonymous AsyncCallback inner-classes that may be preventing the garbage collector from

Re: Calling listbox.clear() is very slow in IE for large list boxes

2009-07-28 Thread brett.wooldridge
Given that the ListBox control is the native list box AFAIK, this would be a browser bug/performance issue. It is also discussed here: http://social.msdn.microsoft.com/Forums/en-US/jscript/thread/6fbd21c7-fb5e-4090-b9e2-0d73f76d4891 Basically, the clear is just doing select.options.length = 0,

Re: save form data in database

2009-07-28 Thread Jim
Take a look at http://www.gwtorm.com/gwtMail.jsp. It may help it. Jim On Jul 28, 8:09 am, brett.wooldridge brett.wooldri...@gmail.com wrote: I run MySQL with a C3P0 connection pool in front of it.  This is what I did [almost] verbatim.  This is assuming you're running Jetty and servlets/RPC.

Re: Long running Timer RPC issue

2009-07-28 Thread kingdomain
Awesome. Thanks so much! I'll give it a try. --jfk On Jul 28, 8:38 am, brett.wooldridge brett.wooldri...@gmail.com wrote: I suspect you've touched upon a subtle bug involving the translation of Java anonymous inner-classes and JavaScript garbage collection. There is a subtle co-dependency

Re: Regarding applying Border to Flextable Cells

2009-07-28 Thread jscheller
Swathi - You might try adding border-style:solid; and see if that makes things behave more consistently. Either way, get a copy of FireBug installed in FireFox and use the inspection feature to poke around the table causing you trouble. If there's some other style getting applied and undoing

Vertical Panel

2009-07-28 Thread Rahul
Hi I am defining an vertical panel with 10 textboxes. like this : VerticalPanel v2 = new VerticalPanel(); TextBox [] t1 = new TextBox[10]; for (i=0;i10;i++) { t1[i] = new TextBox(); v2.add(t1[i]); }

DialogShow.show() and scriptaculous Appear effect

2009-07-28 Thread badgerduke
Hello: I have a DialogBox that I want to apply the Appear effect on. I have to use the show() method . . . how can I have the show() method apply this effect? Thanks, Eric --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: Not able to use 2 different sessions of different users

2009-07-28 Thread brett.wooldridge
Option f) don't use session cookies (or servlet sessions). 1) Login to the server via RPC call. 2) Successful login RPC returns a session ID, put the session ID in a Java static or JS global variable. 3) Pass the session ID in all RPC calls where it matters. 4) Profit. Your server should be as

new line to break from textarea

2009-07-28 Thread Tobe
Hi, how can I activate that new lines in a TextArea become breaks directly on the web page? In short I need the nl2br() function from PHP in GWT. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit

Newbie question(File Permissions issue in GWT)

2009-07-28 Thread Rumpole6
This may not be the right place for this, but: I am using the gwt plugin in eclipse under Windows XP to write an small application and I am facing File Permission Errors trying to access files in the server code when I run my app in hosted mode. I suspect that there is an option to set

Re: Passing a javascript object as parameter to java method

2009-07-28 Thread Jason Essington
One sort of sneaky trick that could be helpful with overlay types would be to do something like: public native String getStringField(String fieldName)/-{ return (fieldName != null this[fieldName] != undefined) ? this[fieldName] : null; }-*/; It isn't as convenient as getThis() or

Re: save form data in database

2009-07-28 Thread Tobe
@Brett I'm using Eclipse and did the things you've posted. I also added the 2 jars in the run configurations, but by compiling the source I get errors for C3P0Registry. On Jul 28, 2:09 pm, brett.wooldridge brett.wooldri...@gmail.com wrote: I run MySQL with a C3P0 connection pool in front of it.

gin on gwt trunk

2009-07-28 Thread Jeff Chimene
Hi, I'd like to verify that gin does not yet build against gwt trunk. I'm about to drop back to 1.7 to start on gin. I just built the gin trunk against GWT 1.5, GWT 1.7 and a 2 wk old GWT trunk. The only successful build was 1.7 It's possible I did something wrong building against GWT trunk,

Accessing JavaScript objects' fields/methods from Java.

2009-07-28 Thread jowharshamshiri
Hey guys, How can I access the fields or methods of a user-defined JavaScript object inside Java? I create the object in JavaScript via a JSNI method and wrap it in the JavaScriptObject return type. But this object does not posses the same set of fields/methods I declared for my object in

porting from python to Java

2009-07-28 Thread thepopeofantelope
I have a python GAE deployed. I rewrote in Java and would like to reuse the existing database. Can I use the same application ID and publish the Java project as the next version? Or can I publish with a new application ID and access the datastore of an existing application ID?

ImageButton in gwt

2009-07-28 Thread dinesh
I have to create a image button in GWT which uses three images(left side image,center stretch image and right image).Created ImageButton should have all the functionalities of Button. Can anyone help me to create ImageButton in GWT with Button functionalities.

Re: JPA with GWT

2009-07-28 Thread Maxence
Thanks bruno On Jul 25, 12:28 pm, mars1412 martin.trum...@24act.at wrote: tx 4 the link a great impartial article, that everyone who considers to use GWT andHibernateshould read On Jul 25, 11:57 am, bruno bruno.marches...@gmail.com wrote: There is an official GWT article about that

Stack overflow at line :0 (Hosted mode memory error)

2009-07-28 Thread Trevis
I've been developing in GWT for about 3 weeks now. At first i just wanted to get my feet wet and maybe port a minor dynamic piece of my site to GWT but i'm so blown away by the technology that i'm considering a full UI port. So far the one issues that i can not seem to resolve is this Stack

API Document

2009-07-28 Thread Karthi
Hi where can I download API document for GWT --~--~-~--~~~---~--~~ 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

errors in jar file for eclipse google plugin

2009-07-28 Thread davis
Hi, I am using GWT 1.7.0, and using the latest Eclipse plugin for Ganymede. I am also using the codehaus maven plugin. I can run my GWT tests inside eclipse, and launch the app from inside eclipse, but whenever I do, I see the following benign errors show up in the hosted shell log: [ERROR]

Re: how do send the user name and password to the server?

2009-07-28 Thread Bushman
On Jul 28, 7:03 am, jaimon more.then.a.b...@gmail.com wrote: hi, i am pretty new to GWT and in general to web programming, so any help would be appreciated.. i would like to create a simple welcom page with a user name and password, and i have few questions: a. authentication: how do

gears 1.2.1 samples and gwt 1.7

2009-07-28 Thread ssprauer
Dear all, I've just tried to run the samples available within the gwt- gear-1.2.1.zip and gwt 1.7 but I cant make them work... com.google.gwt.gears.client.Factory.getInstance() is always returning null, and gears is installed and accessible. I am running the samples through the hosted mode and

Google analytics integration

2009-07-28 Thread makoki
We had recently discovered a bug in our application that came out to be a problem with google analytics integration and liked to know if someone had any idea for a better way to integrate GA with GWT. We've been using GA in out GWT application for quite a time (nearly a year) without a problem

How long does my Webapplication live?

2009-07-28 Thread Ben2008
Hi Folks, If I have a heavy load web application i do not want to rebuild some data (eg. creating instances and loading stuff from database etc.) for every page request. I want to do that once at startup or any later point and keep things alive as long as my webservice is online.And i would

Re: Stack overflow at line :0 (Hosted mode memory error)

2009-07-28 Thread Paul Robinson
You could use trunk instead of GWT 1.7, and then use OOPHM so you can use firefox for hosted mode. http://code.google.com/p/google-web-toolkit/wiki/UsingOOPHM Apart from being annoying, I found that error message didn't cause any problems. I stopped using windows though, so the problem went away

Re: declarative way to build/layout UI

2009-07-28 Thread Thiago
Hi, I suggest you to look at Crux ( http://code.google.com/p/crux-framework ). It provides a declarative way to build UI and some other interesting features. Thiago On 15 jul, 00:40, brett.wooldridge brett.wooldri...@gmail.com wrote: On second reading, what is that UIBinder doesn't do that

Gadgets Docs

2009-07-28 Thread Lucas Neves Martins
The link is broken, /intl/en/webtoolkit/tutorials/1.6/gadgets.html Bridges are falling, and buidings are crashing here, somebody help! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: Gadgets Docs

2009-07-28 Thread Lucas Neves Martins
whoops, here it goes: http://code.google.com/intl/en/webtoolkit/tutorials/1.6/gadgets.html --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Gadgets Docs

2009-07-28 Thread Lucas Neves Martins
Whoops, here it goes: http://code.google.com/intl/en/webtoolkit/tutorials/1.6/gadgets.html On 28 jul, 15:14, Lucas Neves Martins snown...@gmail.com wrote: The link is broken, /intl/en/webtoolkit/tutorials/1.6/gadgets.html Bridges are falling, and buidings are crashing here, somebody help!

Setting Background image on panel

2009-07-28 Thread rlag...@googlemail.com
Hi all, i'm new to GWT. I would like to know if there is a way to set a background image on a panel. thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

com.google.gwt.user.client.rpc.InvocationException:

2009-07-28 Thread Hadar
Hi, When I run my GWT application I receive the following error when the client try to call server method. After that I receive some html page data and the stack trace as can been show below. The application enter the OnFailure method. Before that I see that that RESPONSE code was 200. What

Re: Problem with serializing Date in map

2009-07-28 Thread Sumit Chandel
Hi ramraj, You will run into problems sending a MapString,Object through GWT RPC because the map's values don't respect the conditions for serialization through GWT RPC (see Serializable Types documentation below). The Date class, on the other hand, is supported and can be serialized in GWT RPC.

Re: errors in jar file for eclipse google plugin

2009-07-28 Thread Miguel Méndez
You might want to check the classpath. Its almost like you have a couple versions of GWT on the classpath. On Tue, Jul 28, 2009 at 11:16 AM, davis davisf...@zenoconsulting.bizwrote: Hi, I am using GWT 1.7.0, and using the latest Eclipse plugin for Ganymede. I am also using the codehaus

Re: Gadgets Docs

2009-07-28 Thread Eric Ayers
Hi Lucas, What page is the source of that link? -Eric. On Tue, Jul 28, 2009 at 2:16 PM, Lucas Neves Martinssnown...@gmail.com wrote: Whoops, here it goes: http://code.google.com/intl/en/webtoolkit/tutorials/1.6/gadgets.html On 28 jul, 15:14, Lucas Neves Martins snown...@gmail.com wrote:

problems in integrating gwt 1.7 with spring 2.5

2009-07-28 Thread pablosborges
Problems in integrating gwt 1.7 with spring 2.5 Hello, everyone, I am integrating the gwt 1.7 with spring 2.5 MVC, only that it presents problems. I am using the class GWTSpringController to integrate. see the error below, any suggestions .. 2009-07-28 15:58:08,015 INFO

Re: problems in integrating gwt 1.7 with spring 2.5

2009-07-28 Thread Pablo Borges
forgot to mention there are more the error happens in hosted mode. I use the same configuration in another project and still the error persists in gwt project. thanks. On 28 jul, 16:06, pablosborges pablosbor...@gmail.com wrote: Problems in integrating gwt 1.7 with spring 2.5 Hello,

Accessing Module Name from a Generator

2009-07-28 Thread Thiago
Hi, I have some generators that need to know the name of the module that is beeing compiled. I know it is a very unusual requirement, but I need it to do very significant performance improvements in a specific scenario. The information exists in ModuleSpace class, but is not accessible to the

Re: Debugging GWT App in Eclipse

2009-07-28 Thread Howard Tan
It worked for me too. Thanks. Howard On Jul 27, 2:30 am, CI-CUBE e...@ci-cube.info wrote: I can confirm that after a downgrade to JDK 1.6.0_13 the debugger is working. Crazy IT world isn't? Thx for the information anyway.    Ekki On Jul 27, 8:48 am, Paul Robinson ukcue...@gmail.com

Re: Yet another proxy on GWT thread

2009-07-28 Thread Marcelo Sena
Hi, I still need an answer, if anyone knows how setup such proxy. On Jul 14, 4:55 pm, Marcelo Sena marceloslace...@gmail.com wrote: Hi, I'v seen this kind of discussion over many threads but I still wasn't able to learn form them how to setup a servlet to proxy rpc requests from GWT

Composite inside tree

2009-07-28 Thread Jason.Sadler
Hi everyone, I'm having trouble building a customized tree. I'm trying to build something that looks like the Microsoft Visual Studio installer, where you've got categories (root items on the tree) which expand into a list of items with checkboxes beside them. I've built a Composite that puts a

GWT events, image overlays, and GChart

2009-07-28 Thread bconoly
Ok, this question may be confusing but I'll be as clear as possible. - Currently I have a Pie Chart rendered using GChart. - I would like to overlay a transparent image over the pie chart for a 3d effect. - I need that overlay image to pass along hover events and click events to the

Re: Migrating from GWT-RPC to JSON format without modifying gwt code. Is it possible?

2009-07-28 Thread jwheat3300
I don't know if this will help you, but you can still use JSON with GWT-RPC. What I do is use GSON which is another Google API for converting Java objects to a JSON string. Once you have the JSON string you can easily parse it using GWT's JSON capabilities. You can get more information from

Re: Eclipse Classic 3.5

2009-07-28 Thread Sp4rkR4t
Does anyone have an eta on the 3.5 plugin yet? On Jun 24, 7:39 pm, mihai007 mihai@gmail.com wrote: Oh well just landed here because I already have eclipse 3.5 Didn't even knew about this, nor I was actually using Eclipse 3.5 already I think people should be more careful about those

Re: Eclipse plugin for Eclipse 3.5 (Galileo)

2009-07-28 Thread Juraj Vitko
If you know anything about software development, then you know that any and all development time estimation is just a wild guess. And it is up to the one who asks for the estimations, to not confuse them with truth. (ok don't tell that to your clients or bosses:) The rule of thumb I use: if it's

Setting Background image on panel

2009-07-28 Thread Rodrigue Lagoue Njinthe
Hi again, i spent all the day looking for a solution, the only things i found, were for people working with GWT-Ext JS. Does somebody know if it's possible to set an image as panel's background? thanks for any help -Original Message- From: Google-Web-Toolkit@googlegroups.com

Re: Problems with hosted mode

2009-07-28 Thread Pavel Byles
This might be a hosted mode specific thing, because it worked fine in FF. Maybe when OOPHM in GWT is officially released then I can put it back in the body. When I deploy it to AppEngine I put it back in the body and everything works fine. On Mon, Jul 27, 2009 at 11:58 AM, Rajeev Dayal

Re: Problems with hosted mode

2009-07-28 Thread Rajeev Dayal
Hm, if you have a consistently reproducible case of where the script tag does not load up properly in the body, I'd encourage you to file an issue at http://code.google.com/p/google-web-toolkit. That sounds like a bug in IE hosted mode. On Tue, Jul 28, 2009 at 5:10 PM, Pavel Byles

user/src/com/google/gwt/user/client/ui/Frame.java refers to FrameElement instead of IFrameElement. Is this a bad idea?

2009-07-28 Thread tin
Hi everyone, I am writing some code to try and test some of the behaviour of GWT widgets inside plain old JUnit tests, as opposed to GWTTestCase. One thing I have come across is the following: The Frame class is a wrapper for the IFRAME element, but it uses the following code: public String

conversion to JavaScriptObject fails with cross site communication

2009-07-28 Thread dale
I am creating my first GWT app and have hit a snag. I suspect that the problem is one things below. I can see in the server logs that the server returns ok. This is the method that fails, there is no error ... that I can see :) private final native JsArrayBasicComputerInfo

Re: GWT application released: XProc Designer

2009-07-28 Thread Jerry Silver
Please note: the location of the Designer has changed: http://community.emc.com/docs/DOC-4382. Jerry On Jul 9, 9:56 am, Jeroen van Rotterdam jeroen.van.rotter...@gmail.com wrote: We just released our XProc Designer, a GWT application for designing XProc pipe lines. Check it out

Handling servre side exceptions and displaying precise error messages on the client

2009-07-28 Thread gerry
I am trying to create an application using jena API and gwt. How can I get an exception from the server log displayed on the client? To be more specific: Right now I get on the client the standard message of unexpected exceptions com.google.gwt.user.client.rpc.StatusCodeException: The call failed

Re: Several GWT frameworks in one Project

2009-07-28 Thread Carl Pritchett
From the release notes: GWT-Ext 2.0.6 fully supports GWT 1.5.3 EXT-GWT (GXT) version 1.2.4 supports GWT 1.5.3 (note GXT2.0 supports GWT 1.6 and GXT2.0.1 supports GWT 1.7) So you could use GXT 1.2.4 and GWT-EXT 2.0.6 together and while the widgets may look similar they may not be easy to use

Re: I18n and special Characters

2009-07-28 Thread Carl Pritchett
Make sure also that your properties files are set to UTF-8 (right click in eclipse and set to UTF-8) On Jul 28, 6:03 am, Ian Bambury ianbamb...@gmail.com wrote: Set everything to UTF=8 The project (if not the default for Eclipse if that is what you are using). The class files will not pick

Re: save form data in database

2009-07-28 Thread brett.wooldridge
You have to add the CP30 jar to your project's Build Path. Right- click on project- Properties - Java Build Path - Libraries. -Brett On Jul 29, 1:34 am, Tobe tobias.jungnic...@googlemail.com wrote: @Brett I'm using Eclipse and did the things you've posted. I also added the 2 jars in the run

onSubmitComplete is not working with GWT Showcase

2009-07-28 Thread Simon
Hi all, I have a problem regarding FormPanel. Initially, i am working on default GWT application for submit text through textarea and upload file to server, all the events are handled by servlet, works pretty fine. However, when i switched to using the GWT Showcase framework

Passing an XML document to a Panel

2009-07-28 Thread kavi
How can i pass a complete well formed XML document to panel or to a file in GWT --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Add external java project to GWT project in Eclipse

2009-07-28 Thread branflake2267
Hi Martin, On including more than one project source into your gwt project, can you tell me what you did to get two projects to work together in GWT. I have been trying over and over to combine two projects up for some time, and have not been able to do it. Thanks, Brandon On Jul 21, 3:16 am,

[gwt-contrib] Re: Locking Columns in PagingScrollTable

2009-07-28 Thread dflorey
I'm not sure about the current status of when things will proceed and move to trunk, but I'd like to see this feature in the core table framework! If you have some patches, I can of course add them to my branch as I've already added some functionality to the tables and at least try to merge back

[gwt-contrib] Comment on IE8Support in google-web-toolkit

2009-07-28 Thread codesite-noreply
Comment by sateesh78: Upgrade gwt-dnd, gwt-incubator and gwt-log also, if you are using them. For more information: http://code.google.com/p/google-web-toolkit/wiki/IE8Support --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Allow new strings to be created in the JS AST

2009-07-28 Thread bobv
FYI: A complete re-merge of this, plus the stack trace code and IE event handler fixup is at http://gwt-code-reviews.appspot.com/54807 http://gwt-code-reviews.appspot.com/51820 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Support animated images in ImageResource

2009-07-28 Thread bobv
Reviewers: Ray Ryan, jgw, Message: Review requested. Description: This patch changes the way ImageBundleBuilder loads images to be able to detect image files that contain multiple sub-images. Animated image files do not undergo any transformation, but are emitted as-is via the ResourceContext

[gwt-contrib] Tweak docs for Event#addNativePreviewHandler to warn of multi-app fail

2009-07-28 Thread rjrjr
Reviewers: jlabanca, Description: Adds a warning to the javadoc for Event#addNativePreviewHandler explaining its cross-app limitations. Please review this at http://gwt-code-reviews.appspot.com/51821 Affected files: user/src/com/google/gwt/user/client/Event.java Index:

[gwt-contrib] Re: Tweak docs for Event#addNativePreviewHandler to warn of multi-app fail

2009-07-28 Thread jlabanca
http://gwt-code-reviews.appspot.com/51821/diff/1/2 File user/src/com/google/gwt/user/client/Event.java (right): http://gwt-code-reviews.appspot.com/51821/diff/1/2#newcode393 Line 393: * the same event type. I don't think preview handlers aren't event type specific.

[gwt-contrib] Re: Allow new strings to be created in the JS AST

2009-07-28 Thread bobv
http://gwt-code-reviews.appspot.com/51820/diff/1/8#newcode79 Line 79: * fragments need only be downloaded once. I thought the LoadOrderOracle was a fine idea, so as to no longer require passing in the JProgram. I guess it ran into some issue. No issue; I just wanted to get all of the

[gwt-contrib] Re: Testing new GWT RPC implementation (aka deRPC)

2009-07-28 Thread futzi
Hi Bob, my first test showed, that 1. the performance of the RPC Call improved for less than 30.000 of my test objects. 2. the performance of the RPC Call was worse for more than 30.000 of my test objects. 3. when transfering lots of data, the old RPC mechanism leads to the well known slow java

[gwt-contrib] Error building GWT 2.0 on Windows

2009-07-28 Thread Evelyne
Hi, I'm using gwt-maven-plugin to compile a gwt 2.0 project on an windows xp env. I have the same plugin (jar) as on linux (compiled from 1.1 sources + a patch to use gwt 2.0 - can see it here: http://jira.codehaus.org/browse/MGWT-92), which on linux works just fine. However, after porting the

[gwt-contrib] Re: Locking Columns in PagingScrollTable

2009-07-28 Thread jay
What branch and what functionality have you already added? jay On Jul 28, 1:44 am, dflorey daniel.flo...@gmail.com wrote: I'm not sure about the current status of when things will proceed and move to trunk, but I'd like to see this feature in the core table framework! If you have some

[gwt-contrib] Re: Locking Columns in PagingScrollTable

2009-07-28 Thread dflorey
You can find my branch here: http://code.google.com/p/google-web-toolkit-incubator/source/browse/#svn/branches/dflorey/tableAddons Description of some addons: http://code.google.com/p/google-web-toolkit-incubator/wiki/TreeTable Cheers, Daniel On 28 Jul., 19:43, jay jay.gin...@gmail.com

[gwt-contrib] Re: don't download class factories in the initial download

2009-07-28 Thread scottb
Deleting code is awesome! LGTM, to the extent that I understand what's going on. I'll trust you that the normal visitation patterns result in a working end product. http://gwt-code-reviews.appspot.com/51822 --~--~-~--~~~---~--~~

[gwt-contrib] Re: don't download class factories in the initial download

2009-07-28 Thread Scott Blum
There was an unused import of com.google.gwt.dev.jjs.ast.JModVisitor left in here. Sorry, I just eyeballed reitveld and didn't patch it in. On Tue, Jul 28, 2009 at 3:00 PM, lexsp...@gmail.com wrote: Thanks! http://gwt-code-reviews.appspot.com/51822

[gwt-contrib] Re: Testing new GWT RPC implementation (aka deRPC)

2009-07-28 Thread BobV
On Tue, Jul 28, 2009 at 3:03 AM, futzimgoer...@googlemail.com wrote: my first test showed, that Thanks for the data. Just to clarify, these payloads were only going from the server to the client? -- Bob Vawter Google Web Toolkit Team --~--~-~--~~~---~--~~

[gwt-contrib] Re: don't download class factories in the initial download

2009-07-28 Thread Lex Spoon
On Tue, Jul 28, 2009 at 3:23 PM, Scott Blumsco...@google.com wrote: There was an unused import of com.google.gwt.dev.jjs.ast.JModVisitor left in here.  Sorry, I just eyeballed reitveld and didn't patch it in. My bad! Thanks for fixing it. -Lex

[gwt-contrib] Re: don't download class factories in the initial download

2009-07-28 Thread Scott Blum
NP. I'm all, AGH! Error being reported in Eclipse! GAH! MUST... KILL... IT! LOL On Tue, Jul 28, 2009 at 5:54 PM, Lex Spoon sp...@google.com wrote: On Tue, Jul 28, 2009 at 3:23 PM, Scott Blumsco...@google.com wrote: There was an unused import of com.google.gwt.dev.jjs.ast.JModVisitor

[gwt-contrib] Re: patch to enable web tests using HtmlUnit

2009-07-28 Thread scottb
I'll trust that RunStyleHtmlUnit itself works as advertised. I admit I'm a little dismayed at just how many tests have to be disabled-- especially since they imply problems with user-written test cases of their own code. StringTest is particularly distressing for me, but I'm sure many of the

[gwt-contrib] Re: patch to enable web tests using HtmlUnit

2009-07-28 Thread amitmanjhi
The next patch I will upload contains the fixes I have indicated as done. I also did not review carefully all the broken tests. I mostly mechanically put the annotation just to get the whole test suite to pass. Currently, batching will not work with htmlUnit because the batching code does not

[gwt-contrib] [google-web-toolkit] r5765 commited - Fix bad assertion....

2009-07-28 Thread codesite-noreply
Revision: 5765 Author: b...@google.com Date: Tue Jul 21 14:50:34 2009 Log: Fix bad assertion. Patch by: bobv Review by: amitmanjhi (TBR) http://code.google.com/p/google-web-toolkit/source/detail?r=5765 Modified: /trunk/user/src/com/google/gwt/rpc/rebind/RpcProxyCreator.java

[gwt-contrib] [google-web-toolkit] r5764 commited - Documented the initial load sequence.

2009-07-28 Thread codesite-noreply
Revision: 5764 Author: sp...@google.com Date: Tue Jul 21 13:52:01 2009 Log: Documented the initial load sequence. http://code.google.com/p/google-web-toolkit/source/detail?r=5764 Modified: /wiki/CodeSplitting.wiki === --- /wiki/CodeSplitting.wikiTue Jul

[gwt-contrib] [google-web-toolkit] r5769 commited - Creates snapshot-2009.07.21-r5768 from tr...@5768 via...

2009-07-28 Thread codesite-noreply
Revision: 5769 Author: r...@google.com Date: Wed Jul 22 07:45:04 2009 Log: Creates snapshot-2009.07.21-r5768 from tr...@5768 via svn copy -r5768 https://google-web-toolkit.googlecode.com/svn/trunk https://google-web-toolkit.googlecode.com/svn/branches/snapshot-2009.07.24-r5768

[gwt-contrib] [google-web-toolkit] r5702 commited - Updated to include issue 3510

2009-07-28 Thread codesite-noreply
Revision: 5702 Author: br...@google.com Date: Thu Jul 9 13:54:25 2009 Log: Updated to include issue 3510 http://code.google.com/p/google-web-toolkit/source/detail?r=5702 Modified: /releases/1.7/distro-source/core/src/release_notes.html === ---

[gwt-contrib] [google-web-toolkit] r5766 commited - This patch adds batch execution of GWTTestCases, significantly reduc...

2009-07-28 Thread codesite-noreply
Revision: 5766 Author: amitman...@google.com Date: Tue Jul 21 15:13:53 2009 Log: This patch adds batch execution of GWTTestCases, significantly reducing the synchronization and network overhead. Patch by: amitmanjhi Review (and simplifications) by: scottb

[gwt-contrib] [google-web-toolkit] r5701 commited - Updated release notes for 1.7

2009-07-28 Thread codesite-noreply
Revision: 5701 Author: br...@google.com Date: Thu Jul 9 13:29:21 2009 Log: Updated release notes for 1.7 http://code.google.com/p/google-web-toolkit/source/detail?r=5701 Modified: /releases/1.7/distro-source/core/src/release_notes.html === ---

[gwt-contrib] [google-web-toolkit] r5771 commited - Added branch-info.txt

2009-07-28 Thread codesite-noreply
Revision: 5771 Author: r...@google.com Date: Wed Jul 22 07:57:45 2009 Log: Added branch-info.txt http://code.google.com/p/google-web-toolkit/source/detail?r=5771 Added: /branches/snapshot-2009.07.21-r5768/branch-info.txt === --- /dev/null +++

  1   2   >