GWT 2.1 Visual Themes

2010-11-30 Thread Lukas Herman
Hello, is there any recommended way how to build a new GWT Visual Theme based on ClientBundle and CssResource? According to 'Developer's Guide - CSS Style' using 'Including Style sheets in the Module XML file' is now deprecated. The current visual themes for example

SLF4J with GWT dev mode not works?

2010-11-30 Thread Ed
I am using Spring 3.0.5 with SLF4J. Spring is loaded in the web.xml that is picked up when starting dev mode. Spring then complains that it can't find SLF4J: java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory When putting the SLF4J in the WEB-INF/lib folder, it all works well. Other people

Re: SLF4J with GWT dev mode not works?

2010-11-30 Thread Ed
Just noticed that it has a related issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=3496 -- 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-tool...@googlegroups.com. To

Re: mvn plugin

2010-11-30 Thread Geoffrey De Smet
Stefan, If you add the plugin to your plugin list in the pom, than gwt:compile is automatically added in the phase compile and therefor run upon mvn install. build plugins plugin groupIdorg.codehaus.mojo/groupId artifactIdgwt-maven-plugin/artifactId version2.1-20101001.MGWT219/version

Problem showing NotificationMole

2010-11-30 Thread Nirmal
I am trying to use com.google.gwt.user.client.ui.NotificationMole inside a FlowPanel: g:FlowPanel ui:field=layoutContainer styleName={style.layoutContainer} g:FlowPanel ui:field=glassPanel styleName={style.glassPanel} g:FlowPanel

TabLayoutPanel does not listen to width

2010-11-30 Thread Baloe
Hi all, I'm using a tabLayoutPanel with three tabs. However, the total width is now dynamicly created by the width of the content of the current tab. But, my first and second tabs are not that wide, so the third tab always hangs a bit outside of the tab. How can I set the width of the

Re: Problem showing NotificationMole

2010-11-30 Thread Nirmal
I can make the mole appear by manually setting the properties: public void showNotification(String msgToDisplay){ showGlass(); notifier.show(first: +msgToDisplay); notifier.getElement().getFirstChildElement().getStyle().setDisplay(Display.BLOCK);

Re: Help me to get rid of these d... scrollbars!!! :-/

2010-11-30 Thread Magnus
Well, let me add a note, maybe it is of relevance: I center the right panel by setting its margins: I compute the difference between the root panel's width/height and the panel's width/ height and set the margins accordingly. So the whole thing (panel including margins) is as big as the whole

Re: GWT 2.1 Activities – nesting? YAGNI ? - an exa mple of where you NEED it !

2010-11-30 Thread Thomas Broyer
On 30 nov, 06:28, zixzigma zixzi...@gmail.com wrote: Thank you for your comments. So you would have one main activity for each major area with one view and could have multiple widgets that accomplish what your individual activities could? I had thought about this, but my concern is by

Re: GWT 2.1 Activities – nesting? YAGNI ? - an exa mple of where you NEED it !

2010-11-30 Thread Thomas Broyer
On 29 nov, 23:44, zixzigma zixzi...@gmail.com wrote: the article also argued, that having the same size/fixed regions leads to consistent layout. in the case of Fixed WIDTH, that is true. but if your regions have sub-regions, the sizing is no longer the Width, but rather the HEIGHT. our

Re: Help me to get rid of these d... scrollbars!!! :-/

2010-11-30 Thread Jeff Schwartz
Using the developer tools that come with IE allows you to see what the actual sizes are of each DOM element. When I need to center an element I apply the following css to its containing element: margin-left:auto; margin-right:auto; The above will center its content

Re: Opening a new Window with a Widget in GWT

2010-11-30 Thread Steve Moyer
I've been wondering the same thing ... though it certainly seems like the accepted practice is to use the PopupPanel and DialogPanel. In fact, I can't remember seeing a GWT application that used more than one browser instance or tab. In theory, you can style the GWT panels to look more like

Re: ServiceLayer API and SimpleRequestProcessor Issue

2010-11-30 Thread Thomas Broyer
On 29 nov, 18:36, Eugene Goncharov eugene.goncha...@teamdev.com wrote: Dear Team, I'm working on the project right now that is based on the Google technologies stack(GWT, Guice, Google App Engine). My team and I wanted to make the overall project structure in domain-driven design style, so

Large scale application development and MVP tutorial / no Places or Activities

2010-11-30 Thread cri
I've used the articles Large scale application development and MVP I and II to model our MVP application. I notice that these tutorials don't use either of the Place or Activity classes made available by GWT. I'm wondering why this is. Does anyone know? Thanks -- You received this message

Re: Requestfactory: server side request are static...

2010-11-30 Thread Thomas Broyer
On 29 nov, 01:23, Simon Majou si...@majou.org wrote: I think it would be better to move the requests out of the entity in their own class and annotate them just like for the proxy (something like @requestsFor(Entity.class)). Would it be possible? See

Re: Simple question about GWT.create() signature

2010-11-30 Thread Thomas Broyer
On 29 nov, 10:55, ep eplisc...@googlemail.com wrote: Thomas, in fact it would be really nice if GWT.create() would not require literals, we wanted to use a template method throughout our framework to allow to declare the classes to instantiate, maybe you can provide the issue number so we

Re: Deprecated HandlerManager and svn 2.1 branch question

2010-11-30 Thread Thomas Broyer
On 29 nov, 17:09, Andy pula...@gmail.com wrote: I'm updating my little gwt-traction library and noticed that it's giving compile warnings when I compile with the 2.1 jar downloaded fromhttp://code.google.com/webtoolkit/download.html I often build from source and looking at the 2.1 branch,

Re: .cache.html file size got double after upgrading to GWT 2.1 from 1.7

2010-11-30 Thread jhulford
There's probably something that's not getting pruned by the compiler (dead code eliminated) that was before as a result of modifications you had to make to use 2.1 or perhaps a difference in the compiler in 2.1. I'd use the Story of Your Compile (SOYC) output to check and see what's getting

Re: Using unchanged CSS class names (no obfuscation or prefixing at all)

2010-11-30 Thread jhulford
I'm probably missing something, but how is this different than using the CssResource.style property in your module's XML and setting the value to pretty? Doing that results in disabling the class name obfuscation. You can also use the @External annotation on individual css classes to do the same

Re: Large scale application development and MVP tutorial / no Places or Activities

2010-11-30 Thread massimo malvestio
They introduce the basic concept of MVP approach, but they don't reflect GWT implementation of MVP pattern -- 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-tool...@googlegroups.com. To

Re: GWT 2.1 Activities – nesting? YAGNI ? - an exa mple of where you NEED it !

2010-11-30 Thread Brian Reilly
Another option would be to look at a 3rd party framework. As Thomas pointed out, the GWT team isn't trying to address every use case, and that's where pulling in other frameworks can help. There's no shame in recognizing that you have a complex use case and using any tools available to help. I

Re: GWT 2.1 Activities – nesting? YAGNI ? - an exa mple of where you NEED it !

2010-11-30 Thread Ashton Thomas
I think in the case of the composite activity / composite place, you need to define how closely realted each workspace will be. will there be any overlap between sub/areas of one workspace and a different workspace? You can be careful about how you craft your composite place and how you tokenize

Re: GWT 2.1 Activities – nesting? YAGNI ? - an exa mple of where you NEED it !

2010-11-30 Thread massimo malvestio
In my opionion if you release a functionality and tell people it's better if you use it, you have to be aware of impacts this new functionality can have on existing code. In my opinion use of DockLayout or TabLayout / Panes is not a rare use case, think about a mail reader. MVP approach is very

Child height in SplitLayoutPanel

2010-11-30 Thread Jerome C.
Hello, I've got a SplitLayoutPanel. In the North cell, I've got a ScrollPanel with a tree on it. I want this ScrollPanel height to be the same of the north cell, so when the tree expand, a scroll appears. The size of this ScrollPanel must changed when the north cell is resized. I've tried with

Re: Starting GWT dev mode within Eclipse causes Maven-managed resources to disappear

2010-11-30 Thread Thomas Broyer
On 17 nov, 15:45, Chris crehb...@gmail.com wrote: On Nov 17, 6:03 am, Thomas Broyer t.bro...@gmail.com wrote: Well, if your resources are to be shared with GWT apps only, then how about making a GWT module and putting them in the public path, so the GWT compiler copies them to the output

Re: Drag-and-drop solution with GwtQuery

2010-11-30 Thread Paul Stockley
Looks good. I am curious why you made it a plugin for gwtquery? On Nov 29, 8:36 pm, zixzigma zixzi...@gmail.com wrote: WOW this is Fantastic !!! just looked at the demo, CellTable and CellTree are beyond amazing ! THANK YOU !!! i am super excited, going to experiment with the code very

Re: Starting GWT dev mode within Eclipse causes Maven-managed resources to disappear

2010-11-30 Thread Thomas Broyer
On 30 nov, 16:42, Thomas Broyer t.bro...@gmail.com wrote: I just faced that very same issue, and a coworker too! Forgot to precise: I'm on Win XP Pro SP3, my coworker is on Ubuntu 10.10; same configuration otherwise (Eclipse, m2eclipse, GPE) Eclipse 3.6 SR1 GPE 1.4.0 Maven projects using

Re: Drag-and-drop solution with GwtQuery

2010-11-30 Thread Julien Dramaix
First, I started to port the draggable and dropppable plugin of jQuery in GwtQuery. After that, I added an API allowing GWT develloper to have a nice and easy drag and drop solution without know anything about GwtQuery. On Tue, Nov 30, 2010 at 4:51 PM, Paul Stockley pstockl...@gmail.com wrote:

Re: TabLayoutPanel does not listen to width

2010-11-30 Thread Matt H
Yes, the UI widgets are all terrible. Google Closure has much better widgets. On Nov 30, 10:10 am, Baloe nielsba...@gmail.com wrote: Hi all, I'm using a tabLayoutPanel with three tabs. However, the total width is now dynamicly created by the width of the content of the current tab. But, my

Re: Large scale application development and MVP tutorial / no Places or Activities

2010-11-30 Thread John Rellis
If you read the API it states that these classes are : Experimental API: This class is still under rapid development, and is very likely to be deleted. Use it at your own risk. On Tue, Nov 30, 2010 at 2:03 PM, cri chuck.irvine...@gmail.com wrote: I've used the articles Large scale application

debug in GWT 1.5 in Eclipse

2010-11-30 Thread Biswajit Das
Hi All, I am using GWT 1.5 in eclipse galileo and Ant.But I can not debug gwt widget.Please help me. Thanks, Biswajit -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

What is user agent for google crome

2010-11-30 Thread Chandu
Hi I added google crome plug-in for ie6, what is user agent for crome -- 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-tool...@googlegroups.com. To unsubscribe from this group, send email to

Re: GWT + MySQL

2010-11-30 Thread mgm
I am having the same issue.. I am using MySQL on the server side (server source package only) and there is the run-time error of: java.lang.ClassNotFoundException: com.mysql.jdbc.Driver I do have the mysql package (mysql-connector-java.jar) in the eclipse class path (in Project / Properties /

External Module RPC

2010-11-30 Thread coelho
Hello how to make launch and acces GWT-RPC methods in a separete module I mean an application A using a module M and that module M making RPC calls never seen such a thing in a tutorial Thanks Patrick -- You received this message because you are subscribed to the Google Groups Google Web

Re: Opening a new Window with a Widget in GWT

2010-11-30 Thread John Rellis
I tend to agree, the GWT support for windows is a little contrived. We have used dialogs to achieve a window-esque approach. We actually created a couple of applications using SmartGwt that required heavy utilization of windows, such as popping up move-able charts and forms to create users etc.

Is it possible to pass the value @def to the literal function in CssResource

2010-11-30 Thread Marcin Misiewicz
Hi In my theme I want to use css3 gradients. Since gradients are not the part of the standard yet I have to use wrap them in the literal function like in the example (for webkit browsers) below : background: literal(-webkit-gradient(linear, left top, left bottom, from(#FFF), to(#EDEDED))); It

Re: Large scale application development and MVP tutorial / no Places or Activities

2010-11-30 Thread David Chandler
There are two reasons for this, actually: 1. The MVP tutorials were written months before Activities and Places became available in GWT 2.1.0. 2. The concepts are somewhat orthogonal, that is, Activity != Presenter. I think some of the reason for the confusion around Activity vs. Presenter has

Re: GWT + MySQL

2010-11-30 Thread Greg Dougherty
I've used MySQL in just about every GWT app I've written, so it's quite possible to use it. Including during development running Jetty. 1: All JDBC calls MUST come from the server. The client code can NOT see any jar files, ever. 2: You can NOT reference com.mysql.jdbc.Driver, or any other

Re: mvn plugin

2010-11-30 Thread Yaakov
Stefan, That's a strange version of the plugin... Where did you download that version from? Also, does the 2.1 version work for you 100%? Do you run any JRE tests with it and it works? I haven't been able to get it to run JRE tests properly. Thanks, Yaakov. On Nov 30, 4:49 am, Geoffrey De Smet

Re: TabLayoutPanel does not listen to width

2010-11-30 Thread Greg Dougherty
So, how do we use the Closure widgets w/ a GWT app. Because if I wanted to be writing JavaScript, I wouldn't be using GWT. No? Greg On Nov 30, 6:25 am, Matt H matt2...@gmail.com wrote: Yes, the UI widgets are all terrible. Google Closure has much better widgets. On Nov 30, 10:10 am, Baloe

Re: GWTTestCase: Unable to access objects returned from a successful RPC call

2010-11-30 Thread Greg Dougherty
Stupid question time: Does it work outside of GWTTestCase? Also, have you tried wrapping option 1 with try ... catch (Throwable oops) { oops.stringStackTrace (); }? Greg On Nov 29, 5:08 pm, jtran jtweez...@gmail.com wrote: I've got a project I'm working on where I make an RPC call to the

FlowPanel vs. HorizontalPanel

2010-11-30 Thread Greg Dougherty
I have created a FlowPanel that contains 4 ListBoxes and a button. I wanted to put some space between the items, so I added empty HorizontalPanels (with padding: 3px;) as spacers in between each item. FlowPanel responded by placing each item (including each of the HorizontalPanels), on its own

Re: Opening a new Window with a Widget in GWT

2010-11-30 Thread Brian Reilly
I'd create a separate HTML file that hosts the application module (or a different module). You can inspect the URL and/or history token as appropriate to decide what widget to view and any data you may need to preload it with. The trick then is that I assume you'd want to communicate events back

Re: Client File IO

2010-11-30 Thread khalid
Hello Thank for your replies I will describe this more, In many countries here in the middle east there are many blocked sites by the ISP. Now when a website is blocked all of its content is inaccessible including the images and that is why I want the server to fetch the images for me Thank you

GWT Rest Service Requered Authenticate

2010-11-30 Thread danydan7
Hello, After two days I searched how connect on a url with a authentication user and password but without success, my code is : public class XXX implements EntryPoint { public static final int STATUS_CODE_OK = 200; final DialogBox dialogBox_status = new DialogBox(); public void

Editor framework and DoubleBox

2010-11-30 Thread zhong
I am trying to use SimpleBeanEditorDriver and DoubleBox to edit a double value field. One issue is editorDriver.flush() will reduce the double value precision to the integer value. How can I fix this? Thanks, -- You received this message because you are subscribed to the Google Groups Google

Re: Large scale application development and MVP tutorial / no Places or Activities

2010-11-30 Thread Ray Ryan
+1 I think the community has inferred a linkage between place and presenter that I never meant to imply. The MVP pattern is a lot more generally useful than the place notion — it's all about decoupling view and app logic, a pretty universal concern. IMHO Place is mainly useful for apps that are

Re: FlowPanel vs. HorizontalPanel

2010-11-30 Thread Brian Reilly
On Tue, Nov 30, 2010 at 12:41 PM, Greg Dougherty dougherty.greg...@mayo.edu wrote: I have created a FlowPanel that contains 4 ListBoxes and a button. I wanted to put some space between the items, so I added empty HorizontalPanels (with padding: 3px;) as spacers in between each item.

Re: What is user agent for google crome

2010-11-30 Thread Jim Douglas
Chrome did not yet exist when GWT was first released; GWT groups all WebKit-based browsers, including Safari and Chrome, under the safari user.agent value. http://code.google.com/p/google-web-toolkit/source/browse/trunk/user/src/com/google/gwt/user/UserAgent.gwt.xml On Nov 30, 12:12 am, Chandu

Re: Editor framework and DoubleBox

2010-11-30 Thread Jim Douglas
You probably want to avoid DoubleBox until this bug is fixed: http://code.google.com/p/google-web-toolkit/issues/detail?id=5663 On Nov 30, 8:49 am, zhong zhongl...@gmail.com wrote: I am trying to use SimpleBeanEditorDriver and DoubleBox to edit a double value field. One issue is

Re: Large scale application development and MVP tutorial / no Places or Activities

2010-11-30 Thread Brian Reilly
The fact that the Activities and Places documentation is under the heading MVP Framework in the GWT documentation and contains statements like An * activity* in GWT 2.1 is analogous to a presenter in MVP terminology (recently discussed in another thread:

Re: Eclipse setup, javax.validation missing and jsp syntax highlighting

2010-11-30 Thread Steve Moyer
I'm assuming that neither of you are using Maven as this library is included at http://repo1.maven.org/maven2/javax/validation/validation-api/1.0.0.GA/, so you'll need to download it and manually add it to your classpath. Hope this helps! smoyer On Nov 19, 7:54 am, -sowdri- sow...@gmail.com

Re: .cache.html file size got double after upgrading to GWT 2.1 from 1.7

2010-11-30 Thread Jewel
I tried SOYC and it seems that gxt library is occupying most of the space but dont know how to optimize that. It wasnt a problem in version 1.7.1 of gwt. What make the same code base producing a larger size script at a latter version of gwt? On Nov 30, 9:23 am, jhulford jhulf...@gmail.com wrote:

Re: .cache.html file size got double after upgrading to GWT 2.1 from 1.7

2010-11-30 Thread Jeff Larsen
Have you changed your GXT jar to one made for 2.0? On Nov 30, 12:28 pm, Jewel toje...@gmail.com wrote: I tried SOYC and it seems that gxt library is occupying most of the space but dont know how to optimize that. It wasnt a problem in version 1.7.1 of gwt. What make the same code base

Re: .cache.html file size got double after upgrading to GWT 2.1 from 1.7

2010-11-30 Thread Jewel
I tried GXT 2.2.1 which is for GWT 2.0 (not for GWT 2.1) but I also tried compiling it with GWT 2.0, which also produce larger script. http://www.sencha.com/products/gwt/download.php On Nov 30, 1:29 pm, Jeff Larsen larse...@gmail.com wrote: Have you changed your GXT jar to one made for 2.0?

Removing old maven repositories in GWT SVN

2010-11-30 Thread David Chandler
The GWT SVN repository http://code.google.com/p/google-web-toolkit/source/browse/#svn/ contains Maven repositories from the 2.1.0 release cycle: 2.1.0.M1 2.1.0.M2 2.1.0.M3 2.1.0.RC1 In order to clean up the root of SVN, these will be deleted from SVN during the 2.1.1 release cycle. In addition,

Re: FlowPanel vs. HorizontalPanel

2010-11-30 Thread Greg Dougherty
Ah, thanks. I tried adding padding to my ListBoxes. That caused the inside of the box to grow, but did not put any space between the borders of the adjacent boxes, which is the behavior I want. I put them in a FlowPanel because I want them to flow, one two or three items per line, depending on

Re: FlowPanel vs. HorizontalPanel

2010-11-30 Thread Greg Dougherty
Inserting block-level elements (div, p, etc.) cause exactly what you're seeing in terms of wrapping, so there isn't any bug there. So you're saying there's no way to have two elements (say a label and the thing it's labeling) always stay together within an operable FlowPanel, since all the ways

Re: GWT 2.1 Activities – nesting? YAGNI ? - an exa mple of where you NEED it !

2010-11-30 Thread zixzigma
Thank you everyone for your wonderful insights. You provided very helpful suggestions and invaluable solutions to deal with the problem i described. I was going to implement some of the solutions offered, but this comment by Ray Ryan, got me very worried and kind of put me off. The activity and

Re: FlowPanel vs. HorizontalPanel

2010-11-30 Thread Brian Reilly
First, let's separate two concepts. You suggested using a custom widget to bundle two things together. While that may bundle them together from a source code point of view, that custom widget it ultimately rendered as HTML. Therefore, HTML ultimately defines the rules for how your content will be

Re: TabLayoutPanel does not listen to width

2010-11-30 Thread Alejandro D. Garin
Hi, I have made very good layouts using the gwt layout system. I would recommend to have a look at : http://code.google.com/webtoolkit/doc/latest/DevGuideUiPanels.html Regarding to your UiBinder example, don't put the TabLayoutPanel inside a FlowPanel. On Tue, Nov 30, 2010 at 7:10 AM, Baloe

Re: Client File IO

2010-11-30 Thread Greg Dougherty
Are you sure the images will overload the server? Why? Here's a thought: create an image cache. You can do it on either the client or the server. The client will forget the images if you click away from it, and the images will only be viewable inside your client app, but other than that it

Re: GWT 2.1 Activities – nesting? YAGNI ? - an exa mple of where you NEED it !

2010-11-30 Thread Brian Reilly
There's a difference between experimental and immature. I don't think Activities and Places are experimental. They are building blocks upon which more functionality can be built. While there may be bigger plans for future versions of GWT, I'm glad that we have this much to work with sooner rather

Make TreeItem unselectable

2010-11-30 Thread nathan
Is there a way to make a certain TreeItem unselectable? For example, given this Tree: Category 1 - Subcategory A - Item - Item - Subcategory B - Item - Item How would I make it so that when one of the Subcategory TreeItem is selected, nothing happens? I came up with a hacky way that

Re: GWT 2.1 Activities – nesting? YAGNI ? - an exa mple of where you NEED it !

2010-11-30 Thread David Chandler
Spot on, Brian. The kinds of changes to Activities and Places we're contemplating for future versions of GWT are primarily along the lines of using annotations and generators to automate the creation of PlaceTokenizers and ActivityMappers, for example. We're not talking about wholesale

MVP *without* UiBinder

2010-11-30 Thread cri
I'm in the process of trying to learn GWT 2.1 MVP. At this point we don't have very good knowledge of UiBinder and we're not sure that we want to learn and use it. I'm having trouble understanding the sample Hello/Goodbye application (at the GWT docs site) since it relies on UiBinder. More

How can I declaratively I18N a g:Button title attribute?

2010-11-30 Thread Blackberet
Instead of g:Button ui:field=myButton addStyleNames=myButtonStyle title=myButton Tooltip ui:msg description='previous' Previous /ui:msg /g:Button is there a way to do something like this? g:Button ui:field=myButton addStyleNames=myButtonStyle ui:attribute name=title

Get a PDF from the Server

2010-11-30 Thread Sean
Hi, I apologize in advance, I am extremely new to HttpServelet and RequestBuilders, so if this is a dumb question, I apologize. I typically just work with RPC's, but I don't think this will work in this case. I have the user select a bunch of options from the website, then I hit publish, and it

Re: MVP *without* UiBinder

2010-11-30 Thread Christian Goudreau
Well... UiBinder is almost only made of HTML sementics, I don't see why you can't take 1 hours to learn it... I made the switch 3 months after gwt 2.0 release and now, I can't live without. It's easier, faster than it ever was before to build Ui. Cheers, On Tue, Nov 30, 2010 at 4:33 PM, cri

2.1.1 AutoBeans + Spring 3 REST implementation

2010-11-30 Thread Jeff Larsen
So I've been pounding my head against the wall trying to figure out what will be a good way to integrate GWT 2.1.1 AutoBeans with Spring 3's REST implementation using RequestBuilder. There is a lot of really good stuff in the new REST implementation with Spring 3 but i'm having real trouble

Re: MVP *without* UiBinder

2010-11-30 Thread Jeff Larsen
UiBinder is at least 2-3x faster to develop with once you get the hang of it (it really isn't hard). Take the time to learn it, your code will be infinitely more readable, maintainable and manageable. On Nov 30, 3:52 pm, Christian Goudreau goudreau.christ...@gmail.com wrote: Well... UiBinder is

Re: Get a PDF from the Server

2010-11-30 Thread Chad
Sean, The way I do it (and this may not be the best way) is to use RPC to send the user requests to the server. Then, I store the request data in a table on the server, generating a unique id for that data. The unique id is returned to the user via the RPC callback. Then, a new window is opened

Re: HorizontalPanel align in uibinder......

2010-11-30 Thread Craig
Change the width of the first cell from 80px to 100% to move all the buttons to the right. On Nov 29, 7:35 am, Baloe nielsba...@gmail.com wrote: Hi all, I want to display three buttons at the right of a horizontalpanel, and then I'll add something on the left. But first, how do I get these

Re: How can I declaratively I18N a g:Button title attribute?

2010-11-30 Thread Blackberet
Well that was easy... This works; g:Button ui:field=emailButton addStyleNames=mailButton title=Send a link to this topic ui:attribute name='title' description='toEmailTooltip' / /g:Button On Nov 30, 4:45 pm, Blackberet

Re: Get a PDF from the Server

2010-11-30 Thread Jeff Chimene
On 11/30/2010 02:52 PM, Sean wrote: Hi, I apologize in advance, I am extremely new to HttpServelet and RequestBuilders, so if this is a dumb question, I apologize. I typically just work with RPC's, but I don't think this will work in this case. I have the user select a bunch of options from

Re: HorizontalPanel align in uibinder......

2010-11-30 Thread Jeff Larsen
Why use HorizontalPanel instead of just using an HTML table? On Nov 30, 4:36 pm, Craig yavinm...@gmail.com wrote: Change the width of the first cell from 80px to 100% to move all the buttons to the right. On Nov 29, 7:35 am, Baloe nielsba...@gmail.com wrote: Hi all, I want to display

Re: MVP *without* UiBinder

2010-11-30 Thread cri
Thanks for the advice and we probably will seriously consider using UiBinder. However, that said, my problem at the moment is understanding GWT 2.1 MVP. I'd really like to understand what it takes to build a minimal application. Since the MVP docs are a little sparse, the UiBinder stuff is getting

CellTable with only div's?

2010-11-30 Thread Ed
I want to make a CellTable but without the HTML table, so basically a table that consists of only div's. Any advice on how to do this? (maybe extending the CellList class ?) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: MVP *without* UiBinder

2010-11-30 Thread Stephen Haberman
gain, if anyone can summarize the necessary alternatives to the UiBinder content in MVP it would be a huge help. You do everything the same, your presenter doesn't change, your view/display interface doesn't change, you just create and wire your widgets together manually in your view

css rendering difference on windows vs linux

2010-11-30 Thread Pravin
We are developing application using GWT2.1 and application will be deployed on Weblogic 10.3 server. One of our screen uses DiscloserPanel. Content section has one Horizontal panel which in turn has 3 flow panels that has borders. When i run application in dev mode i see expected results. Then i

Re: MVP *without* UiBinder

2010-11-30 Thread JosephLi
Hi Jeff, Is there some special tools u are using to build utilize the UiBinder way to easily build gui? I tried it, but I also tried Google's latest offering on the Window's Builder, which in gives me the impression that it is way more efficient to build gui with. The tools directly support event

Re: Get a PDF from the Server

2010-11-30 Thread Sean
Thank you both, I realized that I could do less parameters passed and just fetch the data from the DB again. I'm very close, but I'm running into an odd problem. In the Request Builder I pass two arguments like: RequestBuilder builder = new RequestBuilder(RequestBuilder.GET,/

Re: Get a PDF from the Server

2010-11-30 Thread Jeff Chimene
On Tue, Nov 30, 2010 at 5:42 PM, Sean slough...@gmail.com wrote: Thank you both, I realized that I could do less parameters passed and just fetch the data from the DB again. I'm very close, but I'm running into an odd problem. In the Request Builder I pass two arguments like: RequestBuilder

Re: MVP *without* UiBinder

2010-11-30 Thread Christian Goudreau
no code completion support If you're using Google plugin ecplise, you have it. no event click navigation from the ui.xml file don't know what you mean. no wyswug viewer Have you tried GWT designer ? assosociated java editor in eclipse all highlighting Shouldn't happen using GPE. Using

Re: Calling RPC

2010-11-30 Thread Trung
If you want server -- server communication using GWT RPC, gwt- syncproxy is what you need. On Nov 15, 6:50 pm, Raju rajus...@gmail.com wrote: Hi, I am new to GWT and had a requirement. I have two applications running on two different servers. And i need to make an asynchronous call from one

Re: CellTable with only div's?

2010-11-30 Thread John LaBanca
You could extend CellTable and override the protected renderRowValues() method to render the Cells using divs. You can also override CellList, but CellTable already has the API to add Columns, if you want to use them. Alternatively, you could override AbstractHasData and just use

debug sending email

2010-11-30 Thread pieceOvCake
Hi, is it possible to send emails by running application in development mode. Every time a change some code in my mailing code section, I need to upload to HOST and run from there. This is a real pain, or I am I doing something wrong? Thanks -- You received this message because you are

How to prevent CSRF/XSRF when using RequestFactory

2010-11-30 Thread Daniel Cowx
Hi guys, I've been using GWT-RPC up until this point, but would like to make the switch to RequestFactory shortly. I'm a bit confused as to how to prevent CSRF/XSRF with RequestFactory though. As per http://code.google.com/p/google-web-toolkit-incubator/wiki/LoginSecurityFAQ, up to this point

Re: GWT Designer UiBinder can not accept Arabic text.

2010-11-30 Thread Eric Clayberg
1) Make sure that you are using the latest GWT Designer 8.1 build http://code.google.com/webtoolkit/tools/download-gwtdesigner-beta.html 2) Check the ui.xml properties in Eclipse and make sure that the file is set to use the UTF-8 charset. On Nov 28, 6:31 am, sab...@gmail.com

Re: How to prevent CSRF/XSRF when using RequestFactory

2010-11-30 Thread David Chandler
Hi Daniel, I haven't tested it yet, but I believe you can extend DefaultRequestTransport as discussed in this thread to set a request header containing your session ID or other XSRF token:

Re: MVP *without* UiBinder

2010-11-30 Thread JosephLi
hi Christian, Thank you for the reply, here is some clarification to the questions I have: ** no wyswug viewer GWT Designer I have tried the GWT Designer, and I was referring by calling it Window Builder in my previous post. I know I can get the wyswug viewer, but seems like it only work if the

Re: MVP *without* UiBinder

2010-11-30 Thread JosephLi
Also about the java editor highlighting the uifields in the editor indicating that they are not found in the associated ui.xml file. I verified that it only happens to projects created with Spring Roo. It is not a problem if the project is created thru Eclipse. Joseph -- You received this

GWT and Gmail Drap File attachment??

2010-11-30 Thread Noor
Hi, has someone been able to implement Gmail Drag File attachment and Upload with 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-tool...@googlegroups.com. To unsubscribe from this

Re: GWT and Gmail Drap File attachment??

2010-11-30 Thread nino ekambi
Hello, this is done using simple JS so you could implement it yourself for example through JSNI. I think i have the JS Script somewhere let me know if you need it Regards, Alain 2010/12/1 Noor baken...@gmail.com Hi, has someone been able to implement Gmail Drag File attachment and Upload

[gwt-contrib] Re: Make ListEditorWrapper update its backing on flush(). (issue1159801)

2010-11-30 Thread bobv
LGTM, nits. http://gwt-code-reviews.appspot.com/1159801/diff/1/2 File user/src/com/google/gwt/editor/client/adapters/ListEditorWrapper.java (right): http://gwt-code-reviews.appspot.com/1159801/diff/1/2#newcode33 user/src/com/google/gwt/editor/client/adapters/ListEditorWrapper.java:33: private

[gwt-contrib] Eliminate hotspots in ProxyAutoBean code by memoizing data. (issue1161801)

2010-11-30 Thread bobv
Reviewers: rchandia, Description: Eliminate hotspots in ProxyAutoBean code by memoizing data. Patch by: bobv Review by: rchandia Please review this at http://gwt-code-reviews.appspot.com/1161801/show Affected files: M user/src/com/google/gwt/autobean/server/MethodPropertyContext.java M

[gwt-contrib] Re: Passing the row index along with the row value to Cell methods. Currently, the row index is not ... (issue1129801)

2010-11-30 Thread pdr
http://gwt-code-reviews.appspot.com/1129801/diff/4001/5024 File user/src/com/google/gwt/cell/client/Cell.java (right): http://gwt-code-reviews.appspot.com/1129801/diff/4001/5024#newcode65 user/src/com/google/gwt/cell/client/Cell.java:65: context.key = key; On 2010/11/29 23:24:01, jlabanca

[gwt-contrib] [google-web-toolkit] r9303 committed - Added error handling for exceptions that can occur when logging messag...

2010-11-30 Thread codesite-noreply
Revision: 9303 Author: rda...@google.com Date: Tue Nov 30 04:07:57 2010 Log: Added error handling for exceptions that can occur when logging messages are sent over the wire from DevMode to GPE. Review at http://gwt-code-reviews.appspot.com/1149801 Review by: sco...@google.com

[gwt-contrib] Add ServiceLocator API to allow service methods to be invoked on non-static methods. (issue1162801)

2010-11-30 Thread bobv
Reviewers: rchandia, rjrjr, Description: Add ServiceLocator API to allow service methods to be invoked on non-static methods. http://code.google.com/p/google-web-toolkit/wiki/RequestFactory_2_1_1 Issue 5680. Patch by: bobv Review by: rchandia,rjrjr Please review this at

[gwt-contrib] Re: JUnit exceptions cause chains need to be serializable, too. (issue1160801)

2010-11-30 Thread conroy
http://gwt-code-reviews.appspot.com/1160801/diff/1/3 File user/super/com/google/gwt/junit/translatable/com/google/gwt/junit/client/impl/GWTRunner.java (right): http://gwt-code-reviews.appspot.com/1160801/diff/1/3#newcode162

  1   2   >