Re: problem with character encoding

2011-03-23 Thread tanteanni
thx for your investigation, i'll try it with chnaged encoding of propery-file (at the moment i load it via Properties.load.getresourceasstream(file)). but is there a way to let my code let the reencoding, so that properties-file could be utf-8? ('til now i thought that all java encoding is utf-x

Re: IE8-like tabs using GWT

2011-03-23 Thread rjcarr
Hi Bhavin- I'm not sure what an IE8-tab is. Do you just mean a tabbed interface? If so, you'll probably just need to check out the TabPanel: http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/user/client/ui/TabPanel.html Putting the tabs a the bottom is going to be

Re: GWT communicate with Tomcat

2011-03-23 Thread rjcarr
Hi Bastian- Your questions lead me to believe that you don't fully understand what GWT is or does. The GWT simply rewrites java code into java script. This is entirely a client thing that has nothing to do with a server. Now, there is also GWT RPC, which allows this rewritten (or translated)

Re: Feedback on different backends for GWT

2011-03-23 Thread rjcarr
I use servlets because of their ease of use with GWT RPC. Maybe GWT RPC integrates with python nicely now (without needing to use JSON)? I really don't know, I haven't tried it. As for servlets, just like everything else in java, it's only as complicated as you make it. If you don't need struts

Re: Need Feedback on charts frameworks for GWT

2011-03-23 Thread rjcarr
Not exactly client-side, but I generate charts on my server using JFreeChart and it's pretty nice. I do this because there's a lot of data in my charts and it doesn't make sense to send it all client-side first. At some point I want to do some client rendering and for this I've been looking at

Re: RequestFactory and related object persistence

2011-03-23 Thread Luca Morettoni
2011/3/22 Thomas Broyer t.bro...@gmail.com: Have a look at http://code.google.com/p/google-web-toolkit/issues/detail?id=5776 and related bugs. thanks, at the moment I fire two persistence request (one for A update) and a second for B changes... I'll hope to see that fixed in next releases...

Re: Safari window open problem

2011-03-23 Thread rjcarr
I'm confused, why not just use this? http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/user/client/Window.html#open(java.lang.String, java.lang.String, java.lang.String) On Mar 21, 9:39 am, Werner Assek was...@jahia.com wrote: Hello, I am trying to use a GWT native

Re: Positioning a Widget using CSS

2011-03-23 Thread rjcarr
There are a number of ways to do this depending on your situation. You should read up on CSS positioning. Try here: http://www.w3schools.com/css/css_reference.asp#positioning Generally, you'll be using the properties such as: text-align, vertical-align, top, left, and sometimes margin. Do some

Re: RequestFactory and related object persistence

2011-03-23 Thread Thomas Broyer
On Wednesday, March 23, 2011 8:49:16 AM UTC+1, Luca Morettoni wrote: 2011/3/22 Thomas Broyer t.br...@gmail.com: Have a look at http://code.google.com/p/google-web-toolkit/issues/detail?id=5776 and related bugs. thanks, at the moment I fire two persistence request (one for A update)

ORM or JDBC?

2011-03-23 Thread csaffi
Hi everybody, I would like your opinion regarding the use of ORM in web applications built with GWT. I'm a little reconsider about the ORM, and I wonder whether it is worth to use in web applications built with GWT. What would be real advantages in addition to greater independence and portability?

Re: problem with character encoding

2011-03-23 Thread Thomas Broyer
On Wednesday, March 23, 2011 7:10:00 AM UTC+1, tanteanni wrote: thx for your investigation, i'll try it with chnaged encoding of propery-file (at the moment i load it via Properties.load.getresourceasstream(file)). but is there a way to let my code let the reencoding, so that

Re: Need Feedback on charts frameworks for GWT

2011-03-23 Thread Martin Trummer
another important question is if you GWT application has access to the internet or not. e.g. the Google Visualization API is great, but will not work offline I think chronoscope (an interactive time series chart) can also be used offline: a nice offline time-chart is:

Re: Need Feedback on charts frameworks for GWT

2011-03-23 Thread opn
What about clientsidegchart? (http://code.google.com/p/ clientsidegchart/?redir=1) I took a look at it and it looks kind of complex to create the charts, but the style is pretty nice! Anyone tried those and can tell if the library worked for him / her? Regards -- You received this message

Re: Need Feedback on charts frameworks for GWT

2011-03-23 Thread nino ekambi
Looks pretty ok but the API is kind of complicate imho. It should me more simpler to do that. 2011/3/23 opn open...@gmx.net What about clientsidegchart? (http://code.google.com/p/ clientsidegchart/?redir=1) I took a look at it and it looks kind of complex to create the charts, but the style

Catching Key event in popup

2011-03-23 Thread Mogoye
I've got a GWT app with a login step. user enter its login/pass then press enter or login button to perform login action. If login is invalid a popup signals an error. I want to be able to close the popup when user press ok button or when he hits Esc or Enter. I've added a onPreviewNativeEvent

TableLayoutPanel css

2011-03-23 Thread Marco Gadaleta
can Someone help me saying where i can found an example for a tablelayoupanel styling ? thx -- Marco -- 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

Re: DockLayoutPanel with global Scroll

2011-03-23 Thread Marco Gadaleta
Thx john..i think to follow your suggestion. On Tue, Mar 22, 2011 at 9:06 PM, John LaBanca jlaba...@google.com wrote: ResizeLayoutPanel ProvidesResize but does not RequireResize, so it allows you to embed layout panels within your app. However, I wouldn't recommend using too many of them as

Re: Detecting blocked RPC

2011-03-23 Thread Mogoye
In fact there where an error in the called URL we forget to add at the end of the URL the RPC servlet url-pattern. So In post we where just asking the index... Now this have been corrected, we have an answer which is 405 or 500 depending on how we construct the CURL or WGET request. So we still

Re: GWT communicate with Tomcat

2011-03-23 Thread Daniel Renner
Hi there :) , as already explained, the GWT-Compiler converts the java code into java-script code. Everything you implemented in the XX.XX.client package will be transformed into java-script (by the gwt-compiler). Everything you implemented in the XX.XX.server package will work on the server

Re: TableLayoutPanel css

2011-03-23 Thread Marco Gadaleta
TableLayoutPanel is incorrect. I was referring to TabLayoutPanel; On Wed, Mar 23, 2011 at 12:05 PM, Marco Gadaleta gadaleta.ma...@gmail.comwrote: can Someone help me saying where i can found an example for a tablelayoupanel styling ? thx -- Marco -- Marco -- You received this

Re: Positioning a Widget using CSS

2011-03-23 Thread Daniel Renner
Hello, you can add a Style-Name and format the element with a css-class: fooButton.setStyleName(test); CSS file: .test { cssAttribute: value; } Maybe you have to add the keyword !importand for attributes that were set by the gwt-framework. rjcarrs link will help you to get the right

Re: Catching Key event in popup

2011-03-23 Thread Mogoye
I've got it ! Just need to call event.getNativeEvent().stopPropagation(); Well I still don't understand what are consume and cancel ! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Is gwt serialization backward compatible ?

2011-03-23 Thread Kroc
I've serialized data with standard java way into files and database. As I'm dicovering RPC.encodeResponseForSuccess to inject data in web pages, I wondered to know if it's safe to store GWT serialized data into files and blobs for future use (either on client and server side) ? And if yes, is gwt

Hosted Server crashes instantly

2011-03-23 Thread Johannes Lehmann
Hi, I have an extremely annoying issue with running hosted mode from Eclipse. Since about two weeks ago the development server will start up, just to terminate as soon as its finished startup - without any errors. Worse yet I have no idea what could have caused it, since the timing of the start

Re: ORM or JDBC?

2011-03-23 Thread Ben Imp
I've found using ORM in GWT to be pretty much the same as using it in any other setting. If you like it, go for it. I personally do not care for it, as I've found, at least in the projects I've worked on, that the added complexity doesn't seem to pay off. I'd rather just write a thin DAO layer

Re: Need Feedback on charts frameworks for GWT

2011-03-23 Thread Romain BIARD
Ok first of all thanks for sharing your XP ;) @Martin Trummer In fact I don't have internet access while most of applications we are developing are located on client's intranet :( I'll take a look on chronoscope :) @Daniel Renner GXT was my first idea but GPLv3 or Commercial License don't fit my

Re: TableLayoutPanel css

2011-03-23 Thread Marco Gadaleta
nothing..?? On Wed, Mar 23, 2011 at 12:24 PM, Marco Gadaleta gadaleta.ma...@gmail.comwrote: TableLayoutPanel is incorrect. I was referring to TabLayoutPanel; On Wed, Mar 23, 2011 at 12:05 PM, Marco Gadaleta gadaleta.ma...@gmail.com wrote: can Someone help me saying where i can found an

Re: Article about RequestFactory (in italian)

2011-03-23 Thread Luca
Hi, if someone is interested, part II is now online: http://firenze-gtug.blogspot.com/2011/03/requestfactory-framework-parte-2.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: Need Feedback on charts frameworks for GWT

2011-03-23 Thread Brian Reilly
There was an announcement just yesterday of a visualization library, Protovis-GWT. http://groups.google.com/group/google-web-toolkit/browse_thread/thread/6857b43f4563a335 It looked pretty nice from the examples. I haven't looked at the API yet, though. -Brian On Wed, Mar 23, 2011 at 9:52 AM,

Re: Hosted Server crashes instantly

2011-03-23 Thread Brian Reilly
You're probably running into the issue with the latest JDK from Apple. See: http://code.google.com/p/google-web-toolkit/issues/detail?id=6125 and especially http://code.google.com/p/googleappengine/issues/detail?id=4712 -Brian On Wed, Mar 23, 2011 at 9:13 AM, Johannes Lehmann

javascript in uibinder bug?

2011-03-23 Thread Luke
I put javascript inside uibinder safehtmltemplate , all my javascript onblur, onclick or not show in internet explorer7/8 it become like below textarea class=someclass style=height: 60px __listener=null __eventbits=4096some text.../textarea but in firefox, onblur, onclick able to show

How to troubleshoot NPE during UIBinder component initialization

2011-03-23 Thread grigory
Having the NPE problem during view initialization I determined that this element @UiField(provided=true) ShortMessageBox shortMessageBox; causes it. When I remove it from the view everything works fine. The ShortMessageBox is defined UIBinder-based componet: public class ShortMessageBox

move or not to move to Firefox 4 for GWT development

2011-03-23 Thread Armishev, Sergey
I want to upgrade my Firefox browser to version 4 on my development machine. Does GWT development plugin support it without known problems? -Sergey /PREBRspan style='font-size:8.0pt;font-family:Arial,sans-serif;color:#003366' _BR This

Re: move or not to move to Firefox 4 for GWT development

2011-03-23 Thread Jens
I did it today and so far it works. Just make sure FF4 installs the latest GWT Plugin. -- 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

Re: GWT communicate with Tomcat

2011-03-23 Thread bastian stratmann
Thanks for you replies. I'm fairly new to the topic and your answers clarified some concepts. Regards, Bastian -- 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: How to troubleshoot NPE during UIBinder component initialization

2011-03-23 Thread Y2i
More likely you are calling createAndBindUi() before initializing shortMessageBox -- 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,

Using java.lang.reflect or similar

2011-03-23 Thread András Csányi
Hi All! I'm developing a little framework like stuff and I need the reflection API (java.lang.reflect) which isn't part of gwt. The problem: I have an object (basically a dto from server) and there is an another object which contains the grid parameters include the method name as string, which

Re: Catching Key event in popup

2011-03-23 Thread Mogoye
No in fact it doesn't works. More over Firefox and IE does not handle events in the same way so when the behaviour is ok in Firefox it doesn't work on IE and inversement. WebApp makes me going crasy ! -- You received this message because you are subscribed to the Google Groups Google Web

Re: ORM or JDBC?

2011-03-23 Thread Y2i
We use JPA (Hibernate) but JPQL is not sufficient for our project (the lack of recursive CTEs) and we have to use native queries for complex tree operations. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Cannot connect to the server 127.0.0.1

2011-03-23 Thread wilson
Hey, I am trying to write a basic web application and when I run it in eclipse and paste the URL into Safari I get the following message: Safari can’t open the page “http://127.0.0.1:/FirstWebApp.html? gwt.codesvr=127.0.0.1:9997” because Safari can’t connect to the server “127.0.0.1”. It

Re: Need Feedback on charts frameworks for GWT

2011-03-23 Thread Gibson
Came across FusionCharts for GWT today,i have used FusionCharts V3) with php. Havent develved into that with GWT.here is a link http://www.fusioncharts.com/ On Wed, Mar 23, 2011 at 10:41 AM, rjcarr rjc...@gmail.com wrote: Not exactly client-side, but I generate charts on my server using

ScrollBar color

2011-03-23 Thread Issam
Hi, I would like to change the color of the scrollBar (ScrollBarPanel) but I learn that ScrollBarPanel is scroll panel is simply a div with overflow set to scroll. So anyone has an idea how to change the color ?? Thanks -- You received this message because you are subscribed to the Google

Single-Site GWT Application with Plugins as Modules

2011-03-23 Thread deejay
Hello, i have to develop a gwt application with the following features: - login mechanism with user roles and permissions - navigation tree with application modules (showing buttons depending on permissions) - each application module can be opened by the user in a seperate UI tab - it must be

Need to read data from Property file placed in Side META-INF folder but got error

2011-03-23 Thread Nagendra
i an getting error when trying to read property file i wrote below code Properties props = new Properties(); InputStream is = this.getClass().getResourceAsStream(topicalert.properties); props.load(is); when i am trying to compile code i will give me below code : [ERROR] Errors in

Working with third party client libraries in gwt

2011-03-23 Thread Prashant
Hi Guys, I'm very new to GWT and have basic experience in web development. Just started learning gwt and trying to build a web application which would use client libraries in order to connect TIBCO EMS but not sure how to import libraries in to gwt project. I've already developed a java desktop

Re: ORM or JDBC?

2011-03-23 Thread deejay
I would use any OR/M which is compatible to JPA (e.g. hibernate or openjpa) On 23 Mrz., 09:45, csaffi csaff...@gmail.com wrote: Hi everybody, I would like your opinion regarding the use of ORM in web applications built with GWT. I'm a little reconsider about the ORM, and I wonder whether it

Re: move or not to move to Firefox 4 for GWT development

2011-03-23 Thread Jeff Chimene
On 03/23/2011 07:52 AM, Jens wrote: I did it today and so far it works. Just make sure FF4 installs the latest GWT Plugin. I did find that I had to remove the plugin reinstall via the missing plugin page. But, it might have been a quirk of the moment, as there was an active session.

Tag for page encoding

2011-03-23 Thread Catorcio
Hello, I have a GWT (2.2) application making use of GWT-RPC. It is working fine, but there is a problem when accessed through a proxy. Besides the proxy issues mentioned in other discusions in this forum (which has been taken into consideration), the proxy blocks responses from the application

Re: can't debug with eclipse because launching in eclipse fails

2011-03-23 Thread David Chandler
In order to get all resources copied onto the maven classpath when running dev mode from Eclipse, you'll need to use copyWebapptrue/copyWebapp in the config section for gwt-maven-plugin (or run mvn package each time you update resources). If this doesn't work, please post on the gwt-maven-plugin

Re: Using java.lang.reflect or similar

2011-03-23 Thread Y2i
Sorry, the map should be MapString, PropertyMyDTO -- 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, send email to

Re: Using java.lang.reflect or similar

2011-03-23 Thread Y2i
You can create an interface like this interface PropertyT { String get(T dto); } initialize a MapMyDTO, String for each DTO type myDtoMap.put(getFilename, new Property() { String get(MyDTO dto) { return dto.getFilename(); } }); ... and then call myDtoMap.get(propertyString).get(dto); to get

Re: Need to read data from Property file placed in Side META-INF folder but got error

2011-03-23 Thread Y2i
Not everything in java.util is supported by GWT: http://code.google.com/webtoolkit/doc/latest/RefJreEmulation.html#Package_java_util -- 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: Celltable column header overlap / bug?

2011-03-23 Thread Jim Weaver
Just an update. I think the problem I am seeing has more to do with a bug regarding column header display for a celltable than it does sorting. If I remove all sorting logic from my celltable, I can still get overlapping double image column headers if the data being mapped into the table does

Re: Working with third party client libraries in gwt

2011-03-23 Thread Ben Imp
If you want to use them on the client side, you must have the source code for GWT to translate to JS. In addition, this code must be compatible with GWT's subset of Java. Using third party jars on the server side, on the other hand, is just straight Java. I would hazard a guess that your issue

Re: Need to read data from Property file placed in Side META-INF folder but got error

2011-03-23 Thread Y2i
Also take a look at http://code.google.com/webtoolkit/doc/latest/DevGuideI18nConstants.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 google-web-toolkit@googlegroups.com. To unsubscribe from this

Re: Feedback on different backends for GWT

2011-03-23 Thread jscheller
It sounds like much of your performance is issues will probably be more database related than anything, so a lot of the other backend decision probably come down to personal preference or experience. I've been working on a GWT project that talks to a Django/MySQL backend for several months. The

Re: How to troubleshoot NPE during UIBinder component initialization

2011-03-23 Thread Thomas Broyer
To debug generated code: pass the -gen argument to DevMode (e.g. -gen gen) so you can look at the generated code (will be emitted to the given folder). Here, you could then have access to the generated createAndBindUi method and the line 18 where the error occurs. You can also add the folder to

Custom locale in DatePicker

2011-03-23 Thread Txang
Hello, Is there any way to have on same view two DatePickers with two different locales?. I need to show one with english locale and another with italian locale. I have been searching how to do using LocaleInfo with no luck. Any ideas or suggestions? Thanks a lot. -- You received this message

Styling Cell individually in CellTable

2011-03-23 Thread Raphaël Brugier
Hi, I've got a use case with the CellTable where a cell should be rendered with a different background color depending on the cell content. I've also some TD with a rowspan 1. I've implemented an AbstractCell to set a style depending on the status (short version) : public class

Re: [Announcement] Protovis-GWT

2011-03-23 Thread George Moschovitis
Excellent! I 'll have a look ASAP! *thank you*, -g. -- 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, send email to

When is an object passed over RPC safe to modify?

2011-03-23 Thread Martin Larsson
We're experimenting with background saving in our GWT-app. IOW. we mark objects as 'modified', and then at regular intervals, find all modified objects and pass them to the database for storage. The question is when is it safe to mark the object as 'clean'. The on- success-handler of the

GWT Designer Issue: copy/paste CellTable loses columns

2011-03-23 Thread cri
I've had great success copying and pasting using GWT Designer, but it seems like copying and pasting CellTables results in lost columns in the copied CellTable. To reproduce simply create a CellTable with one TextColumn, then try to copy and paste it into the same GUI class. In the copy, the

Re: CellTable odd/even row styles

2011-03-23 Thread Yaakov Chaikin
Sorry I didn't reply right away... Didn't have access to the app for the last few days... So, I just checked and the styles that I set are NOT there at all, i.e., they are not appearing at all. What am I doing wrong there? -Yaakov. On Wed, Mar 16, 2011 at 5:09 PM, Jeff Larsen larse...@gmail.com

Re: When is an object passed over RPC safe to modify?

2011-03-23 Thread Y2i
What about 3 states for an object: clean modified saving periodically save only objects in the modified state don't edit objects in the modified and saving sates in onSuccess(): saving-clean in onFailure(): saving-modified -- You received this message because you are subscribed to the Google

Re: MVP pattern for Tabbed UI (Each Tab = Unique Module e.g. Orders)

2011-03-23 Thread Philippe Beaudoin
You may want to take a look at http://gwtplatform.com an MVP framework with built-in support for tabbed presenterd and breadcrumbs. Might not be exactly what you're looking for, but it may help get the conversation started... Cheers! Philippe -- You received this message because you are

Error: Not finding AbstractSerializationStreamReader

2011-03-23 Thread Steve J
I've already constructed and deployed a GWT application successfully, so it's not like I haven't done this before. But with this next app, incorporating Guava, I am getting this error when the app attempts to make an RPC call (this particular service doesn't include any Guava structures). I'm

Creating a reusable DialogBox with UiBinder?

2011-03-23 Thread TheCatWhisperer
Hi, I'm trying to create a number of reusable dialog boxes using UiBinder. Basically, I want to be able to call... void someFn() { MyDialogBox box = new MyDialogBox(myConfigObj); box.show(); } ... but I want to define the Dialog in its Own MyDialogBox.ui.xml MyDialogBox.java

Re: CellTable odd/even row styles

2011-03-23 Thread Yaakov Chaikin
Ok, I see. It works now and based on the code to which you provided the link, here is the change that had to be made: Rename the getStyle() method to cellTableStyle() and put @Override just to make it clearer that we are overriding this interface method with our own. That's it! Thanks!

Showing a PopupPanel hides all Elements

2011-03-23 Thread Go2one
Hi! if I create a new PopupPanel and call the show()-Methode, the hole page is white. Nothing changes if I click or do something. BUT if I change to another browser tab, all elements will be shown if I return... Same appears if I create and show other DialogBox- Elements... Has anyone an idea?

Intermittent XSRF attacks: Hosted Mode, FF3.6, GWT2.2

2011-03-23 Thread manstis
Hi, We keep getting sporadic XSRF attack errors in Hosted Mode. They normally occur only when an application feature is first accessed (we don't use code-splitting so it might be a red herring). We use vanilla GWT RPC. I've recorded the HTTP headers for a good request and bad (i.e, XSRF attack)

Re: Showing a PopupPanel hides all Elements

2011-03-23 Thread Thomas Broyer
Which GWT version are you using? See http://code.google.com/p/google-web-toolkit/issues/detail?id=4532 -- 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

Re: Questions on image cell showing images, please help

2011-03-23 Thread Alexandre Ardhuin
Hi, If you have ImageResource, you can use com.google.gwt.cell.client.ImageResourceCell . If you have only urls, you can create your own ImageCell like com.google.gwt.cell.client.ImageCell and change html template used : public class MyImageCell extends AbstractCellString { interface Template

Logging client exceptions to a file

2011-03-23 Thread SVR
Is this possible, I know GWT is client side, but is this possible at all? The debug/log window (client side) is pretty lame and doesnt even allow copy/paste. I know there is an exception thrown, but can hardly scan the window without search facility or copy/paste to notepad and search? Any ideas?

General purpose RPC libraries

2011-03-23 Thread Brian V
Hi, As I understand it, there's no way to compile a project without an entry point. I've been working on a project that defines 4 or 5 RPC interfaces (each defined as it's own GWT module) which subsequent projects will use, but which this project will not really use at all. Since I was

Re: GWT - Replace g:center of DockLayoutPanel in UiBinder dynamically

2011-03-23 Thread Alexandre Ardhuin
I have something like that in my code. I use a com.google.gwt.user.client.ui.LayoutPanel g:center g:LayoutPanel ui:field=placeholder / /g:center and in java code : @UiField LayoutPanel placeholder; public void setPlaceHolder(IsWidget w) { placeholder.clear();

Re: MVP pattern for Tabbed UI (Each Tab = Unique Module e.g. Orders)

2011-03-23 Thread Jatinder Pal Singh
Thanks very much. Yes I have heard of GWTP. But I wanted to stay with the original MVP pattern offered by Google. I don't know if GWTP is the way to go. On Wed, Mar 23, 2011 at 3:21 PM, Philippe Beaudoin philippe.beaud...@gmail.com wrote: You may want to take a look at http://gwtplatform.com

Re: Upgrading from 2.1 to 2.2 and changing environment

2011-03-23 Thread BobbyGrace
Thanks, you answer was not at all what I asked about but I solved my problem by turning on AppEngine. -- 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

Re: image.getWidth() does not work in GWT. Any workarounds?

2011-03-23 Thread Philip Rogers
Did you try using the onload event in GWT, like you did in the JS? For example: public class MyTest implements EntryPoint { public void onModuleLoad() { final Image testImg = new Image(http://i.cdn.turner.com/ cnn/.element/img/3.0/global/header/hdr-main.gif?nocache= + Math.random());

Re: GWT 2.2 Celltable Paging

2011-03-23 Thread Alexandre Ardhuin
Hi, I think you should use : cellTable.setRowCount(result.size()); cellTable.setRowData(0, result); instead of : cellTable.setRowData(result); Javadoc of com.google.gwt.user.cellview.client.AbstractHasData.setRowData(List? extends T) tells : Set the complete list of values to display on one

Style TabLayoutPanel

2011-03-23 Thread Marco Gadaleta
Hello everyone, I'm trying to style a TabLayoutPanel but without success. More precisely, I'm trying to change the color of tab and the border of content area.. but i cannot find their way.. Any suggestion would be appreciated. Thx -- Marco -- You received this message because you are

Re: Error: Not finding AbstractSerializationStreamReader

2011-03-23 Thread Y2i
I had a similar NoClassDefFoundError when the jar that contained the not found class was added twice to the classpath. May be the fact that gwt-user.jar is automatically added to the web app classpath for the session is the root of the problem? -- You received this message because you are

Re: expand ListBox as droplist using keyboard

2011-03-23 Thread Alexandre Ardhuin
ListBox use html SELECT element. Thus, you have natively (without keypresshandler) keys up/down to change selection and : - in Firefox and IE : ALT+DOWN/ALT+UP to expand/collapse select. - in chrome : Space/esc to expand/collapse select. I don't know if you can expand select with javascript.

GWT 1.7.1 - run problem

2011-03-23 Thread Łukasz P .
Hi, I've got a problem when running my project with gwt 1.7.1 and this message appears: Unknown argument: -codeServerPort Google Web Toolkit 1.7.1 HostedMode [-noserver] [-port port-number | auto] [-whitelist whitelist-string] [-blacklist blacklist-string] [-logLevel level] [- gen dir] [-style

Re: Showing a PopupPanel hides all Elements

2011-03-23 Thread Go2one
I'm not realy sure which version I'm using. It's a build from 17/02/2010. I will try to upgrade to a newer GWT version and will report, if the bug is fixed,... On 23 Mrz., 21:39, Thomas Broyer t.bro...@gmail.com wrote: Which GWT version are you using?

Re: where to place my own jre and google emulated classes?

2011-03-23 Thread Patrick Tucker
Is your jre folder in the same folder as your Module.gwt.xml file? On Mar 22, 12:32 pm, KD kanwald...@gmail.com wrote: This is my current setup... src/ com acme Model.gwt.xml model token Token.java ... test/ super com acme jre java lang CloneNotSupportedException.java

Re: MVP pattern for Tabbed UI (Each Tab = Unique Module e.g. Orders)

2011-03-23 Thread Philippe Beaudoin
For info, GWTP is looking to merge back with the GWT MVP classes. The goal is to offer a nice annotation-based alternative to the complex setup and boilerplate often required to wire together a large MVP app. In addition to features such as simple tab presenters or hierarchical name tokens,

Re: MVP pattern for Tabbed UI (Each Tab = Unique Module e.g. Orders)

2011-03-23 Thread Philippe Beaudoin
Sorry, wrong link: http://www.google.com/events/io/2011/sessions.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 google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to

Double-click the event grid line

2011-03-23 Thread 007
hi, Now I use the grid to traverse a objectList, want to double-click a row, get more information on the object, just do not know what to add double click event row GridFriend.getCellForEvent (event), event mere ClickEvent. . . . . . That can help me to know Thank you thank you 字典 -

Re: MVP pattern for Tabbed UI (Each Tab = Unique Module e.g. Orders)

2011-03-23 Thread Y2i
From my experience TabPanel does not fit with MVP, but TabBar on top of a client area fits well. Use DockLayoutPanel, place TabBar into g:north and the client area into g:center -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

Re: [gwt-contrib] Re: [RFC] GWT Widgets that ROCK!

2011-03-23 Thread Antoine DESSAIGNE
Hi, I'm fairly new in the GWT development but I'm not sure that the selected development answers the initial need. Let me explain you why (sorry it is rather long). It is also very possible that I'm completely wrong. The main goal is allowing the developers to easily theme their application. As

Re: [gwt-contrib] Re: [RFC] GWT Widgets that ROCK!

2011-03-23 Thread Jens
With the appearance pattern your proposed Theme class would be the same as a GWT module containing all the deferred bindings for changing all the appearance classes of all widgets. So you would inherit this theme module and you are done. I think you could also overwrite a specific deferred

[gwt-contrib] Re: [RFC] GWT Widgets that ROCK!

2011-03-23 Thread dflorey
I am wondering if you are considering to use html5 widgets if available and provide a fallback gwt implementation for browsers that do not (yet) support widgets like http://slides.html5rocks.com/#semantic-tags-2 I think in general GWT has the right tools for using native browser stuff

[gwt-contrib] Re: Ie9 fix. (issue1389801)

2011-03-23 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/1389801/diff/1/user/test/com/google/gwt/dom/client/SelectTests.java File user/test/com/google/gwt/dom/client/SelectTests.java (right): http://gwt-code-reviews.appspot.com/1389801/diff/1/user/test/com/google/gwt/dom/client/SelectTests.java#newcode158

[gwt-contrib] Update partial support elements for ie9. (issue1389802)

2011-03-23 Thread pdr
Reviewers: jlabanca, Description: Update partial support elements for ie9. Please review this at http://gwt-code-reviews.appspot.com/1389802/ Affected files: M user/src/com/google/gwt/canvas/Canvas.gwt.xml M user/src/com/google/gwt/media/Media.gwt.xml Index:

[gwt-contrib] Re: Update partial support elements for ie9. (issue1389802)

2011-03-23 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/1389802/diff/1/user/src/com/google/gwt/media/Media.gwt.xml File user/src/com/google/gwt/media/Media.gwt.xml (right): http://gwt-code-reviews.appspot.com/1389802/diff/1/user/src/com/google/gwt/media/Media.gwt.xml#newcode54

[gwt-contrib] Re: Adding a new TextButton widget to replace the existing Button widget. The new widget provides th... (issue1383806)

2011-03-23 Thread jlabanca
http://gwt-code-reviews.appspot.com/1383806/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adding a new TextButton widget to replace the existing Button widget. The new widget provides th... (issue1383806)

2011-03-23 Thread jlabanca
http://gwt-code-reviews.appspot.com/1383806/diff/3001/user/src/com/google/gwt/cell/client/ButtonCellBase.java File user/src/com/google/gwt/cell/client/ButtonCellBase.java (right):

[gwt-contrib] [google-web-toolkit] r9877 committed - cherry picking r9861 into release/2.3m1

2011-03-23 Thread codesite-noreply
Revision: 9877 Author: fabio...@google.com Date: Wed Mar 23 05:27:01 2011 Log: cherry picking r9861 into release/2.3m1 http://code.google.com/p/google-web-toolkit/source/detail?r=9877 Modified: /releases/2.3/user/src/com/google/gwt/core/client/impl/Impl.java

[gwt-contrib] Re: Made UiBinder class lookup more generous. (issue1386803)

2011-03-23 Thread davidmorgan
http://gwt-code-reviews.appspot.com/1386803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Made UiBinder class lookup more generous. (issue1386803)

2011-03-23 Thread davidmorgan
Thanks, updated as suggested. http://gwt-code-reviews.appspot.com/1386803/diff/1/user/src/com/google/gwt/uibinder/rebind/UiBinderWriter.java File user/src/com/google/gwt/uibinder/rebind/UiBinderWriter.java (right):

  1   2   >