Re: CellTable Formats Incorrectly on IE9

2011-09-30 Thread Sudhakar Abraham
The easiest way to fix this will be to use specific styles to IE browser. You append * before the style property, these styles become specific to IE browser. //.css .cellTableEvenRowCell { text-align:left *text-align:left !-- only specific to IE browser -- } .cellTableOddRowCell {

Re: a problem with flow layout

2011-09-30 Thread Sudhakar Abraham
Set the size to VerticalPanel using the setSize(width, height) . S. Abraham www.DataStoreGwt.com Persist objects directly in GAE On Sep 30, 6:19 am, wahaha il...@yahoo.com.cn wrote: i made a flowpanel,then put some verticalPanel in it. but the verticalPanel will not layout as flow,it just as

Re: GWT and IE8

2011-09-30 Thread mkn
Now I have only the line: set-property name=user.agent value=gecko1_8/ I'm not so sure why this should fix the problem. By specifying that line I speed up the compiler because it doesn't compile all the versions anymore. If run my application in IE8 now, then I just see a blank page and no sign

Re: gwtc support for java style 'compiler flags'

2011-09-30 Thread Thomas Broyer
On Thursday, September 29, 2011 8:02:11 PM UTC+2, jchimene wrote: On 09/29/2011 06:05 AM, Bart wrote: Because Java does not have compiler flags like, it is suggested to use static (boolean) contants with if expressions instead. The Java compiler is even required to remove any dead code

Re: GWT Developer Plugin for Firefox 7

2011-09-30 Thread David Sanders
I tried compiling on Ubuntu 11.04 and got: ExternalWrapper.cpp:50:1: error: expected constructor, destructor, or type conversion before ‘ExternalWrapper’ -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web

Re: [RequestFactory] Updating a proxy

2011-09-30 Thread Thomas Broyer
Why would BasicUserService ( = GizmoService?) be called if you invoke UserRequest#persist(UserProxy) ( = ThingRequest#persist(ThingProxy) ?) It's hard to follow what you're expecting given that you switched from thing/gizmo/setSomething to [something-else]/user/basicUser/set[what?] Could you

Re: How can i delete a GWT Module?

2011-09-30 Thread Šobis
Same problem here. Did anyone solve this problem? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/wNKGbxTunckJ. To post to this group, send email

Re: GWT Developer Plugin for Firefox 7

2011-09-30 Thread Thomas Broyer
I haven't tried it (yet) but what's needed is just to do the same as http://code.google.com/p/google-web-toolkit/source/detail?r=10593 but for ff70. If you're not on Linux 32bits though (that's my case, and why I haven't tried it yet), you'd have to download the appropriate Gecko SDK for your

Re: RequestFactoryEditorDriver returns empty array for getPaths

2011-09-30 Thread Thomas Broyer
Are you sure the editor driver sees the ListEditor? Set a breakpoint in PathCollector to see which editor it visits (this is done when you initialize() the driver), and try to understand why it doesn't collect the path for your list (note that the PathCollector only collects paths for

Re: AutoBean Deserialization of JSON that can be an Array or single Object

2011-09-30 Thread Richard Turner
Thanks for the reply, the server is using JSON-lib to serialize an XML representation of the data (as two REST APIs are provided), I will look into altering the servers JSON output to force arrays where needed. Thanks again, Rich On 30 September 2011 05:56, -sowdri- sow...@gmail.com wrote:

Re: Failure Parsing XML Document from Servlet

2011-09-30 Thread Thomas Broyer
On Thursday, September 29, 2011 10:39:40 PM UTC+2, Laura Bickle wrote: Hi Jeff, I set the content type like so: response.setContentType(text/xml); I think MIME is a superset of content type. I don't explicitly set any other MIME things. How do I look up the MIME type of a file? My

Re: How can i delete a GWT Module?

2011-09-30 Thread Thomas Broyer
In your project's settings, go to Google → Google Web Toolkit and make sure your module is no longer referenced there. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: GWT and IE8

2011-09-30 Thread Thomas Broyer
On Friday, September 30, 2011 9:02:46 AM UTC+2, mkn wrote: Now I have only the line: set-property name=user.agent value=gecko1_8/ I'm not so sure why this should fix the problem. No, it'll be worse. Juan Pablo asked you *whether* you were doing such things (because that could have

Re: GWT Developer Plugin for Firefox 7

2011-09-30 Thread David Sanders
Yeah I'm on Ubuntu 64 bit For other 64 bit users out there, I needed to do the following: - Get your Linux 64bit gecko sdk from Mozilla (available here: http://releases.mozilla.org/pub/mozilla.org/xulrunner/releases/7.0/sdk ) - Add -std=gnu++0x to CFLAGS in the Makefile - Make sure I had the

Re: FlexTable border and TabPanel

2011-09-30 Thread hadar
Hi, Thanks for your help. I try run it and the tab panel is working. For the border I see the different border fot the cell but I don't see the any border for the row. Do you have any idea why is that ? BTW - how can I send a screenshot ? Thanks On Sep 29, 3:35 pm, Sudhakar Abraham

Re: FlexTable border and TabPanel

2011-09-30 Thread hadar
Hi, Thanks for your help. I try run it and the tab panel is working. For the border I see the different border fot the cell but I don't see the any border for the row. Do you have any idea why is that ? BTW - how can I send a screenshot ? Thanks On Sep 29, 3:35 pm, Sudhakar Abraham

Add style for even row and add row in cellTable.

2011-09-30 Thread Brito
I created a cellTable having more number of rows and columns. I wana add background color for each row in celltable. Shall I change the property in celltable? Help me. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: Add style for even row and add row in cellTable.

2011-09-30 Thread Sudhakar Abraham
There are three ways to add style to celltable 1. Global css 2. Inline Style sheet using UiBinder 3. Using CellTable.Resources Extend the CellTable.Resources interface and specify the CellTableStyle.css in source attribute. I send the code segment of CellTable.Resources used in CellTable. //

Newbie question on gradient Button with GWT CSS

2011-09-30 Thread Danux
Hi everyone, I am new to web development but pretty experienced in Java for standalone desktop application development. So I understand GWT is the perfect tool for people like me, who can only do a few lines of JS before getting overwhelmed. Eventually I am going to write a sizable application

Re: how to give a external link inot a samrtgwt portlet

2011-09-30 Thread kushal patil
For external link please use following code com.google.gwt.user.client.ui.Anchor lAncInvoiceNo = new com.google.gwt.user.client.ui.Anchor(Google, false); lAncInvoiceNo.addClickListener(new ClickListener() { public void onClick(Widget w) { //TODO--Your code -- Like

Gwt stream version.

2011-09-30 Thread maksim tulupov
GWT RPC Request contains stream version. Now stream version is 5. May be somebody knows how can I get stream version from code? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

DataGrid Issue : Deferred binding failed for 'com.google.gwt.user.client.ui.NativeHorizontalScrollbar.ResourcesTransparant'; expect subsequent failures

2011-09-30 Thread Stéph
Hi all, I just update my GWT version to the newest version : 2.4. I have tried to create a DataGrid in a DialogBox, and i got the error below : [DEBUG] [visu] - Rebinding com.google.gwt.user.client.ui.NativeHorizontalScrollbar.ResourcesTransparant [DEBUG] [visu] - Invoking generator

Re: GWT and IE8

2011-09-30 Thread mkn
No, it'll be worse. Juan Pablo asked you *whether* you were doing such things (because that could have triggered the issue), not that you change you module. So the answer would be no, I haven't modified anything. How can I found out what this function does (because obviously it throws the

RequestFactory and JSR 303 validator behavior customization

2011-09-30 Thread Romain BIARD
Hi all, My project has some Entities stored in Mysql and we are using Hibernate Validator as JSR 303 implementation. My problem is that GWT ServiceLayerDecorator considers that any operations on the database need a complete validation on the objects, even delete (in my case). Maybe it would

GWT 2 Servlet

2011-09-30 Thread Navindian
Hi foks, I wish to have GWT component talk to a Servlet. Any quick suggestion? Thanks Naveen Gayar -- 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: GWT 2 Servlet

2011-09-30 Thread Juan Pablo Gardella
See http://code.google.com/intl/es-419/webtoolkit/doc/latest/DevGuideServerCommunication.html 2011/9/30 Navindian navind...@gmail.com Hi foks, I wish to have GWT component talk to a Servlet. Any quick suggestion? Thanks Naveen Gayar -- You received this message because you are

Re: GWT Developer Plugin for Firefox 7

2011-09-30 Thread wbabachan
It works for me too. Ubuntu 11.04 x86_64 But I got xullrunner 7.0.1 -- 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: Module Load Failure with GWT 2.4.0 (but not with 2.3.0)

2011-09-30 Thread Juan Pablo Gardella
See this pom.xmlhttp://code.google.com/p/google-web-toolkit/source/browse/trunk/samples/mobilewebapp/pom.xml and fow define gwt-maven-plugin. PD: The gwt-user jar you must put in scope provided. 2011/9/30 K H kon...@gmx.at I use GWT with Maven and with GWT 2.3.0, mvn clean gwt:run works

GWT 2.4 CellTable issue

2011-09-30 Thread zip184
Upgrading from GWT 2.3 to 2.4 caused a client-side exception in a class of mine that extends CellTable. There has been no loss of functionality, but the exception is a constant development annoyance. com.google.gwt.core.client.JavaScriptException: (TypeError): this.insertBefore is not a function

Re: GWT and IE8

2011-09-30 Thread mkn
to add some more information: I think there is something wrong with the cache. Because when I clear the cache, then it works. But then when I visit the page once again, I get the java script error. And then, when I click on the refresh button of the IE Browser, it works again. On Sep 30, 3:12 pm,

Re: GWT Developer Plugin for Firefox 7

2011-09-30 Thread Fabricio Pizzichillo
Can you upload it to svn or somewhere? 2011/9/30 wbabachan wbabac...@googlemail.com It works for me too. Ubuntu 11.04 x86_64 But I got xullrunner 7.0.1 -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

visualization API and Shape Markers Option

2011-09-30 Thread lakumc
Hi to all, i want to use Shape markers described in this http://code.google.com/intl/it-IT/apis/chart/image/docs/gallery/line_charts.html#gcharts_background_fills I can't succeed to use Options class to set the property chm to use markers like arrow, USAGE chm=

ScrollPanel

2011-09-30 Thread ELkeke
Hi, I should like to customize a ScrollPanel, and particulary the scrollbar in order to have a beautiful scollbar. For example: remove the 2 buttons for the vertical scrollbar(top and bottom) or change the background color of the scrollbar -- You received this message because you are

CellSampler

2011-09-30 Thread Mike Dee
I'd like to reiterate the sentiment in this message: http://groups.google.com/group/google-web-toolkit/browse_frm/thread/34aaaefe6c35a7f5/ed4fb0378cbf88d2?lnk=gstq=cellsampler#ed4fb0378cbf88d2 The CellSampler code is difficult to understand. The sample is here:

Re: GWT Designer and Google Maps

2011-09-30 Thread Eric Clayberg (Google)
In general, you can add new GWT widgets to the palette by using the palette context menuhttp://code.google.com/javadevtools/wbpro/userinterface/palette_context_menu.htmlor the Palette Managerhttp://code.google.com/javadevtools/wbpro/userinterface/palette_manager.html .

Re: CellSampler

2011-09-30 Thread Thomas Broyer
DataGrid is from GWT 2.4: http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/user/cellview/client/DataGrid.html Everything else is in the sample's code (PendingChange, BirthdayChange, CategoryChange, etc.) or in the ContactDatabase.java (Category, ContactInfo,

Re: RequestFactory and JSR 303 validator behavior customization

2011-09-30 Thread Thomas Broyer
You can turn validation off (or customize it) in RF using a ServiceLayerDecorator. If you want, using the same approach, you could also implement some kind of validate the arguments of this method before calling it (triggered, or disabled, by an annotation on the method) but then you couldn't

Re: Add style for even row and add row in cellTable.

2011-09-30 Thread Andrei
If you use a global CSS file, you can do this: .cellTable tr : even { color: red; } Similarly for odd rows. Then all you need is to assign cellTable style to your table. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

UiBinder Maps

2011-09-30 Thread Nicolas
Hi I'm trying to use Google Maps in my project so I add inherits name='com.google.gwt.maps.GoogleMaps' / in the gwt.xml file. I use deferred binding for create the UI and the View.ui.xml file's code is: !DOCTYPE ui:UiBinder SYSTEM http://dl.google.com/gwt/DTD/xhtml.ent; ui:UiBinder

Testing GWT Touch in Android browsers

2011-09-30 Thread leathrum
I put together a simple applet implementing Touch-related event handlers on a Canvas element, to test support for Touch in various browsers on my Android Honeycomb tablet (Toshiba Thrive). I posted the results on my Wordpress blog: http://cs.jsu.edu/wordpress/?p=346 I was actually somewhat

Re: [RequestFactory] Updating a proxy

2011-09-30 Thread Hilco Wijbenga
On 30 September 2011 00:54, Thomas Broyer t.bro...@gmail.com wrote: Why would BasicUserService ( = GizmoService?) be called if you invoke UserRequest#persist(UserProxy) ( = ThingRequest#persist(ThingProxy) ?) Because BasicUserProxy is part of UserProxy. It's hard to follow what you're

Re: GWT and IE8

2011-09-30 Thread mkn
Okay after hours for trying out different things I found out that the problem should be something with RPC calls. So if a RPC call is being executed I get the java script error. Then I reload the the site and execute the RPC call again = it works. I hope someone can help me further. On Sep 30,

Re: GWT 2.4 CellTable issue

2011-09-30 Thread zip184
Here's a better example: Running this code works fine in GWT 2.3 but throws the exception in GWT 2.4 CellTableString table = new CellTableString(); table.addColumn(new TextColumnString() { @Override public String getValue(String object) { return object; }

GWT Tutorial, and then ? How to learn reald world GWT development

2011-09-30 Thread Gervais.b
Hi everyone, I want to learn how to use GWT for professionnal apps. So, I have followed the tutorial[1] and Googled a lot until found some interesting resources. Especially the presentation from ray Ryan at Google IO 09 Google Web Toolkit Architecture: Best Practices For Architecting Your GWT

Any decent java.util.Calendar, Locale, TimeZone emulation?

2011-09-30 Thread David Given
Does anyone know of any decent libraries to emulate the above classes? So far I've found this: http://code.google.com/p/gwt-calendar-class/ ...but it doesn't appear to be quite complete and I'm having trouble making it work. Anyone know of anything else? (This is to make existing code work, so

Re: Any decent java.util.Calendar, Locale, TimeZone emulation?

2011-09-30 Thread Dennis Haupt
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 no. i tried, believe me. Am 30.09.2011 23:31, schrieb David Given: Does anyone know of any decent libraries to emulate the above classes? So far I've found this: http://code.google.com/p/gwt-calendar-class/ ...but it doesn't appear to be

Re: [RequestFactory] Updating a proxy

2011-09-30 Thread Thomas Broyer
On Friday, September 30, 2011 9:26:22 PM UTC+2, Hilco Wijbenga wrote: On 30 September 2011 00:54, Thomas Broyer t.br...@gmail.com wrote: Why would BasicUserService ( = GizmoService?) be called if you invoke UserRequest#persist(UserProxy) ( = ThingRequest#persist(ThingProxy) ?) Because

Re: [RequestFactory] Updating a proxy

2011-09-30 Thread Hilco Wijbenga
On 30 September 2011 15:08, Thomas Broyer t.bro...@gmail.com wrote: On Friday, September 30, 2011 9:26:22 PM UTC+2, Hilco Wijbenga wrote: On 30 September 2011 00:54, Thomas Broyer t.br...@gmail.com wrote: Why would BasicUserService ( = GizmoService?) be called if you invoke

Re: [RequestFactory] Updating a proxy

2011-09-30 Thread Thomas Broyer
If you edit() and persist User (what you did in the code sample you sent), then the mutableUser will be frozen at the time you fire() the request, and if all goes well (i.e. in the Receiver's onSuccess), you could then just use the mutableUser instance as your new cached user. -- You received

Re: [RequestFactory] Updating a proxy

2011-09-30 Thread Hilco Wijbenga
On 30 September 2011 16:08, Thomas Broyer t.bro...@gmail.com wrote: If you edit() and persist User (what you did in the code sample you sent), then the mutableUser will be frozen at the time you fire() the request, and if all goes well (i.e. in the Receiver's onSuccess), you could then just

Re: syncProxy + Xsrf

2011-09-30 Thread Shawn Brown
Just for the record, I guess the underlying issue is that syncProxy uses interfaceWhateverService extends XsrfProtectedService and does not use  WhateverServiceAsyn that gets created by GWT.create(). I gave up on syncProxy and will use the appengine remote api instead

[gwt-contrib] Re: Comment on RequestFactory_2_5 in google-web-toolkit

2011-09-30 Thread codesite-noreply
Comment by seq...@gmail.com: Issue 6705 was released in GWT 2.4. May be we need to move corresponding line in this overview to RequestFactory_2_4 page. For more information: http://code.google.com/p/google-web-toolkit/wiki/RequestFactory_2_5 --

[gwt-contrib] Re: Any interest in having css3pie integrated with GWT?

2011-09-30 Thread Jeff Larsen
If ie8 and 9 didn't need a bunch of heavy lifting to get all of the advantages of css3 styles, then you would probably be right, but unfortunatetly, ie10 is going to be when ie finally starts meeting the standards. The point is semi-moot. I've started a project

Re: [gwt-contrib] Re: Any interest in having css3pie integrated with GWT?

2011-09-30 Thread David
I hope IE7 will not be dropped in short term. That would be dramatic for GWT apps that are used in the enterprise environments. In our case our customers are already very annoyed that we can not support IE6 decently enough. David On Thu, Sep 29, 2011 at 6:21 PM, Jens jens.nehlme...@gmail.com

[gwt-contrib] Re: Gives CellTable an option to disable colgroup and/or don't attach the message (issue1557804)

2011-09-30 Thread jlabanca
LGTM Your call on whether or not you agree with the comments. http://gwt-code-reviews.appspot.com/1557804/diff/1/user/src/com/google/gwt/user/cellview/client/CellTable.java File user/src/com/google/gwt/user/cellview/client/CellTable.java (right):

[gwt-contrib] [google-web-toolkit] r10675 committed - Exporting a map of obfuscated CSS names to full class names into a bui...

2011-09-30 Thread codesite-noreply
Revision: 10675 Author: mlow...@google.com Date: Fri Sep 30 10:03:13 2011 Log: Exporting a map of obfuscated CSS names to full class names into a build artifact CSV file. This will allow CSS names to be found in the DOM for frontend testing. Review by: unn...@google.com

[gwt-contrib] [google-web-toolkit] r10676 committed - Gives CellTable an option to disable colgroup and/or don't attach the ...

2011-09-30 Thread codesite-noreply
Revision: 10676 Author: gwt.mirror...@gmail.com Date: Fri Sep 30 15:13:14 2011 Log: Gives CellTable an option to disable colgroup and/or don't attach the message panel. Disabling both leads to 50% faster layout time in IE (about 25% each). The side effects are 1. Disabling