Re: Gwt Sound doesn't work!?

2011-07-25 Thread Alain Ekambi
Have you tried the one from Fred Sauer ? http://code.google.com/p/gwt-voices/ 2011/7/24 Hani Hashemi jhanihash...@gmail.com i added zero code to my gwt.xml inherits name=org.miller.gwt.Sound/inherits and then added 'gwt-sound.jar' to my project but when i'm going to run it,it shows zero

How can I get the Expenses sample up and running?

2011-07-25 Thread Warren Tang
I have trouble to run the Expenses sample in GWT's samples folder. The sample appeared in Google I/O sessions a few times. I'm not familiar with App Engine, but this is what I've done: 1. create an new Eclipse project and then overwrite the src and war with those from the Expenses

Re: Battery Percentage

2011-07-25 Thread Ashwin Desikan
have two images one for battery red and battery green. you can define them as sprites in your CSS under different style names like batteryRed, BatteryGreen. Your logic can fire an event when the battery% has reached above or below 40% and accordingly change the image by applying the

Re: Aw: Re: MVP best practices, how to expose a view to a presenter?

2011-07-25 Thread Thomas Broyer
You'd have to either juggle with binding annotations (and possibly private modules), or have the same dependencies in your provider as in your provided class (to be able to 'new' the class yourself in the provider) and keep them in sync. IMO, unless you're in a hurry, if this is absolutely

Declare an array of panels in UiBinder

2011-07-25 Thread Alexander Orlov
Currently I do @UiField VerticalPanel vp; void addSlot() { final FocusPanel fp = new FocusPanel(); vp.add(fp); } ...so, vp contains a variable number of fps at runtime. However I try to use UiBinder wherever it's possible. Is it possible to declare Widget Arrays resp. ArrayLists in

Re: Changed handling of quotes in GWT localizable resources?

2011-07-25 Thread googelybear
Hi, I am a bit puzzled about this, is no one else facing this issue? How did you guys solve it? According to the official Message Format javadoc from Oracle (http:// download.oracle.com/javase/6/docs/api/java/text/MessageFormat.html) the old trick with doubling the quotes should still work

Re: Changed handling of quotes in GWT localizable resources?

2011-07-25 Thread googelybear
just found out that this only affects properties loaded via the Constants interface. When using ui:msg in uibinder files the old trick still works (I guess this goes via MessageFormat). But when loading the property programmatically using Constants interface it does NOT work (meinaing 2 '' in the

Re: Declare an array of panels in UiBinder

2011-07-25 Thread Tomasz Gawel
Assuming you do not use FocusPanel in other cases in this Widget just anototate addSlot with @UiFactory and return newly created slot from it: @UiFactory FocusPanel void addSlot() { final FocusPanel fp = new FocusPanel(); vp.add(fp); return fp;

Re: Declare an array of panels in UiBinder

2011-07-25 Thread Tomasz Gawel
Sorry i haven't noticed vp is panel not list ;) so in java you have sth like that: ListFocusPanel slots; @UiField FlowPanel slotTargetPanel; @UiFactory FocusPanel void addSlot() { FocusPanel slot = new FocusPanel(); slots.add(slot); return slot; } in ui.xml: !-- your root ui element

Re: Frustrated with GWT

2011-07-25 Thread Jeff Larsen
Did you map your servlet in your web.xml file? -- 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/-/95sWSOEQpS4J. To post to this group, send email

Re: Not Finishing Compile

2011-07-25 Thread Sean
And just a quick update I've made sure GWT and the Eclipse Plug-ins are up to the latest. Still, so far no luck with being able to compile. Really wish I knew what was causing this -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: Declare an array of panels in UiBinder

2011-07-25 Thread Alexander Orlov
On Jul 25, 12:09 pm, Tomasz Gawel tomaszga...@op.pl wrote: ListFocusPanel slots; @UiField FlowPanel slotTargetPanel; @UiFactory FocusPanel void addSlot() { I suppose this should be @UiFactory FocusPanel addSlot() {    FocusPanel slot = new FocusPanel();    slots.add(slot); Here I get:

Re: Declar~á´â´â´ .´´ e an array of panels in UiBindera

2011-07-25 Thread Alisson Prestes
On 7/25/11, Alexander Orlov alexander.or...@loxal.net wrote: On Jul 25, 12:09 pm, Tomasz Gawel tomaszga...@op.pl wrote: ListFocusPanel slots; @UiField FlowPanel slotTargetPanel; @UiFactory FocusPanel void addSlot() { I suppose this should be @UiFactory FocusPanel addSlot() {    

Re: Declare an array of panels in UiBinder

2011-07-25 Thread Tomasz Gawel
Yes, you're right. It's a mistake. I copied your method signature and forgot to remove void after adding FocusPanel as a return type. -- 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: Declar~ á´â´â´ .´´ e an array of panels in UiBindera

2011-07-25 Thread Alisson Prestes
I'm sorry, my smartphone was in my pocket and I accidentally sent this nonsense message to the group :$ Alisson Prestes www.google.com/profiles/javalisson On Mon, Jul 25, 2011 at 9:50 AM, Alisson Prestes javalis...@gmail.comwrote: On 7/25/11, Alexander Orlov alexander.or...@loxal.net wrote:

How to package a gwt project into a jar so that it can be included into other projects

2011-07-25 Thread Komal Goyal
Hi, I need to package a gwt project into a jar and use the implementations of this project ie its client side class in the importing projects client package and the server side classes to the importing projects server classes how will the Impls work in this case..? -- You received this

Regarding menu navigation (page to page) in GWT

2011-07-25 Thread Nandha
Hi, Requirement : More pages . navigation using menu am using menu for navigating from a page to page.. In this I created a rootpanel with a content panel . i added two pages inside the content panel.. one with visible and another with hidden.. On click of the menu both are interchanging by

Re: Frustrated with GWT

2011-07-25 Thread Kevin Jordan
Yeah, definitely looks like a case-sensitive error. It's got uppercase letters in the mapping of where it's listening on, but all lowercase in the request. On Jul 24, 11:09 pm, Gal Dolber gal.dol...@gmail.com wrote: Maybe the uppercases? try this:

Re: Frustrated with GWT

2011-07-25 Thread Jeff Larsen
oops, i missed the web.xml at the top of the post. Yea, I agree with everyone else. -- 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: How to package a gwt project into a jar so that it can be included into other projects

2011-07-25 Thread Nandha
Hi.. I ll explain upto my knolege You can use the server side classes directly but not the client.. The server side classes you can find out from projectname\war\web-inf\classes folder in your workplace of eclipse Client side Code: These code are complied as html and java scripts You cannot use

Re: Declare an array of panels in UiBinder

2011-07-25 Thread Alexander Orlov
On Jul 25, 3:16 pm, Tomasz Gawel tomaszga...@op.pl wrote: Yes, you're right. It's a mistake. I copied your method signature and forgot to remove void after adding FocusPanel as a return type. I've got your example working... kind of, thanks. But I still can't add any FocusPanels to slots

Re: Regarding menu navigation (page to page) in GWT

2011-07-25 Thread Justin T
Here's what I usually do to transition between pages in GWT. It may or may not be what your looking for. I first clear the Rootpanel, then add to the panel another class which acts like another page. Here's a example: public class Example implements EntryPoint { public void onModuleLoad() {

Re: Frustrated with GWT

2011-07-25 Thread JC
I spent one week trying to connect my GWT Client application to my Servlet throug RPC and I got a similar problem. I gave up testing from Eclipse/GWT plugin against my servlet handling the JDBC connection. It looks like GWT is forcing you to use Jetty and GWT database. I solved the problem with

i18n, properties and SafteHtml

2011-07-25 Thread Johannes
Hello, I'am using the I18NSync to generate Messages interfaces from properties file. I've read in the documentation that Messages support SafeHtml. Is it possible with the I18N-tools to generate safehtml Messages? I had a look at AbstractLocalizableInterfaceCreator. Am I right that only the type

Multiple dialog boxes

2011-07-25 Thread Ric -
Hi, i have a problem with the dialog boxes from the gwt. It is no problem to use one dialog box, but i need multiple of them. If one dialog box pops up, the other one gets locked and you can use the first dialog box until you close the new one. Is there a way to solve this problem ? For example a

Cell Table Data Handling Performance

2011-07-25 Thread BST
Hi, I have successfully managed to use a Cell table an abstract pager to fetch the new set of data from an RPC and display them on the cell table. Many thanks to the developer discussions and Developer Guide. But I do have a few concerns, as I plan to use it for large data sets, maybe like 10k

GWT MAVEN PLUGIN Loading Images

2011-07-25 Thread vzm
Hi guys Could you please tell me where is the best folder to put photos?? I am a beginner en gwt with maven, but I worked with both separately. I am trying to build a project with GWT MAVEN MYBATIS SPRING. So difficult for the third time?? The question is... where could I put the images

SimpleEventBus : why such a non-predictive behavior implementation ?

2011-07-25 Thread david.herv...@gmail.com
Hi, I'm facing a problem when using the simple implementation of the EventBus. // register widget B to be notified when WidgetA trigger an event register handler of WidgetB on WidgetA.EventType // dispatch (firingDepth is incremented) WidgetA.fireEvent // my widget is really called !!! that's

Re: GWT MAVEN PLUGIN Loading Images

2011-07-25 Thread David Chandler
In a Maven project, images and other Web artifacts (html, css) belong under src/main/webapp. If you're using GWT's image bundling (see ClientBundle in docs), the images will go in src/main/resources instead. Please post any follow-up questions specific to gwt-maven-plugin to the appropriate

Re: GWT animation and effect library with CSS3 support

2011-07-25 Thread VisualFox
I added some documentation and code example. I am not sure what is really needed as I already include the javadaoc with the source code. Please tell me if you need anything more. Perhaps some more sexy demo? = I can use some help editing the doc = As you can tell my english isn't perfect so if

Re: How can I get the Expenses sample up and running?

2011-07-25 Thread David Chandler
The Expenses sample is designed to be used with Maven. See README-MAVEN.txt in the samples/expenses folder and follow instructions there. /dmc On Mon, Jul 25, 2011 at 12:43 AM, Warren Tang warren.c.t...@gmail.com wrote: I have trouble to run the Expenses sample in GWT's samples folder. The

RequestFactory create proxy object serverside

2011-07-25 Thread Jakob Mar
Using RequestFacory I am trying to create an object on the server like this: public imterface FooRequestContext extends RequestContext { RequestFooProxy createByBarId(String barId);//create new Foo object (dose not persist it) RequestFooProxy calculate(FooProxy foo); } createByBarId

SharePoint Permissions Issue - Users moved from Domain A to Domain B

2011-07-25 Thread Srilakshmi Chilukuri
We have an Windows Server 2003 AD DS forest, under which we have two domains trusted Domain A and Domain B We are moving users from Domain A to Domain B We have MOSS 2007 intranet and internet SharePoint site which have several site collections with sites ranging from 10-500 in each site

Re: GWT Designer isDesignTime Not Working?

2011-07-25 Thread Eric Clayberg
Unfortunately, that option no longer works in GWT 2.2 and above, so we are replacing it with an implementation of Beans.isDesignTime()http://gwt-code-reviews.appspot.com/1443802/in GWT 2.4 http://code.google.com/eclipse/beta/docs/download.html. The two options would be to use GWT

Re: SharePoint Permissions Issue - Users moved from Domain A to Domain B

2011-07-25 Thread Srilakshmi Chilukuri
On Jul 25, 11:06 am, Srilakshmi Chilukuri srimo...@yahoo.com wrote: We have an Windows Server 2003 AD DS forest, under which we have two domains trustedDomainA andDomainB We are moving users fromDomainA toDomainB We have  MOSS 2007 intranet and internet SharePoint site which have several

Re: SharePoint Permissions Issue - Users moved from Domain A to Domain B

2011-07-25 Thread David Chandler
Wrong forum, please post elsewhere. On Mon, Jul 25, 2011 at 9:21 AM, Srilakshmi Chilukuri srimo...@yahoo.com wrote: On Jul 25, 11:06 am, Srilakshmi Chilukuri srimo...@yahoo.com wrote: We have an Windows Server 2003 AD DS forest, under which we have two domains trustedDomainA andDomainB We

Re: Cell Table Data Handling Performance

2011-07-25 Thread John LaBanca
On Mon, Jul 25, 2011 at 6:49 AM, BST babusri...@gmail.com wrote: Hi, I have successfully managed to use a Cell table an abstract pager to fetch the new set of data from an RPC and display them on the cell table. Many thanks to the developer discussions and Developer Guide. But I do have a

Re: position of selected row in a celltable

2011-07-25 Thread Deepak Singh
Any idea pls. On Sun, Jul 24, 2011 at 10:50 PM, Deepak Singh deepaksingh...@gmail.comwrote: Hi, I have a celltable. I want to access the position/margin of the selected row of the table at runtime. How can i acheive this? Thanks -- You received this message because you are

GWT frameworks?

2011-07-25 Thread flyingb...@gmail.com
Is there no more new big frameworks for gwt? Only ones from this three choices? Smart GWT, GXT, and Vaaldin? I like gxt the best when I tried it before because of speed and widget options. Smart GWT was slow for me I not sure if they improved that. Is there better frameworks now for gwt?

Re: GWT frameworks?

2011-07-25 Thread joe kolba
depends on what you are going to be using your application for... If it's something within a company and possibly served from a local server I highly recommend smartgwt. Something that is going to get a lot of traffic and needs to be fast and responsive i would just stick with original GWT with

Re: GWT frameworks?

2011-07-25 Thread Jeff Larsen
I looked into SmartGwt, and I'll just say it wasn't for me. -- 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/-/Wa0pSdu3S5AJ. To post to this group,

Re: Cell Table Data Handling Performance

2011-07-25 Thread BST
Many Thanks for the input. The scenario is that I am not displaying more than 100 rows per page. And the pager works through 3 pages. Yes the Data load is on Demand, as when the user presses the next button for the 4th page I am getting another 300 rows thru an RPC. It is a plain view only

Re: position of selected row in a celltable

2011-07-25 Thread BST
I did try what you wanted, but even I am stumped. What I was trying was getting the source from the SelectedModel, and getting its absoluteTop and absoluteLeft, but that did not work. I will surely update if I find any other way to do this. -- You received this message because you are

Re: GWT frameworks?

2011-07-25 Thread Giuseppe La Scaleia
Give a look to gxt. It's a powerfull gwt library with rich components 2011/7/25 Jeff Larsen larse...@gmail.com I looked into SmartGwt, and I'll just say it wasn't for me. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this

Re: position of selected row in a celltable

2011-07-25 Thread Deepak Singh
I also tried a lot but could not get to it. I think we need to raise this to gwt team. Regards Deepak On Mon, Jul 25, 2011 at 10:57 PM, BST babusri...@gmail.com wrote: I did try what you wanted, but even I am stumped. What I was trying was getting the source from the SelectedModel, and

Re: Cell Table Data Handling Performance

2011-07-25 Thread John LaBanca
On Mon, Jul 25, 2011 at 1:22 PM, BST babusri...@gmail.com wrote: Many Thanks for the input. The scenario is that I am not displaying more than 100 rows per page. And the pager works through 3 pages. Yes the Data load is on Demand, as when the user presses the next button for the 4th page

Re: GWT Designer isDesignTime Not Working?

2011-07-25 Thread Dave Kor
Thanks for the reply! I guess I'll make do for now with a temporary fix. The documentation should really be updated, I wasted half a day trying to figure out what I was wrong with my code. . On Mon, Jul 25, 2011 at 11:16 PM, Eric Clayberg clayb...@google.com wrote: Unfortunately, that option no

Re: GWT + Javascript Libraries

2011-07-25 Thread KD
It totally makes sense to use other libraries (with JSNI approach) to do something that GWT does not offer out of the box (yet i.e.) The problem is making a wrapper that is agnostic to the JS library version and making sure you are not writing your own (pure or not) javascript that is not

Re: GWT frameworks?

2011-07-25 Thread gwt.user
Like Joe said it depends. If you are looking for plug-ins free widgets GXT is the best imho. But i will put gwt4air in that list. At my company we are developing mostly Flex applications. gwt4air saved us for having to deal with ActionScript :) -- You received this message because you are

Re: GWT frameworks?

2011-07-25 Thread joe kolba
I would be careful when calling them frameworks. They are more collections of custom widgets. For frameworks any of them libraries can use different frameworks. On Mon, Jul 25, 2011 at 2:26 PM, gwt.user gwt.u...@yahoo.fr wrote: Like Joe said it depends. If you are looking for plug-ins free

Google beta plugin 2.4

2011-07-25 Thread bbgott
The website for the Google beta plugin lists an install repository for Eclipse 3.7 (Indigo). When I attempt to install the plugin from that repository, I get an error message indicating that the repository does not exist. Will the Beta plugin for Eclipse 3.6 work, or should I wait for the

URGENT: navigation bar menu

2011-07-25 Thread Marko
Hey guys. I need one menu where user doesnt need to click to see the menu items. I didnt find anything for it, so I tried with MenuButtons and insert a Menu with items in it, and then add two events: MouseMove and MouseOut. But it doesnt work well and I think its because of the animation coding

[Problem] Unable to load module entry point with tutorial GWT project

2011-07-25 Thread Cedric Lemaitre
Hi, It's my first step with Eclipse and the GWT pluggins. I try to make this tutorial : http://code.google.com/webtoolkit/doc/latest/tutorial/gettingstarted.html But I have this error when I make the running at the step 3 : http://code.google.com/webtoolkit/doc/latest/tutorial/buildui.html. I

Re: Google beta plugin 2.4

2011-07-25 Thread David Chandler
Please paste a link to the page you referenced and the error message (including path to missing repo) here. Thousands of people have installed GPE for 3.7 successfully so there is likely a typo somewhere. Thanks, /dmc On Mon, Jul 25, 2011 at 2:02 PM, bbgott bbg...@gmail.com wrote: The website

Re: GWT Developer Plugin on Safari 5.1 (OS X Lion 10.7) doesn't load

2011-07-25 Thread Eric Ridge
So I just found the page on developer.apple.com that definitively says the WebKit plugin API is no longer supported as of 10.7 (which I assume also means Safari 5.1, regardless of OS version):

After using Context menu, how to trigger the browsers default one? (on, say, an image)

2011-07-25 Thread darkflame
I was using this bit of code I found to detect a right click action on a widget; @Override public void onContextMenu(ContextMenuEvent event) { event.stopPropagation(); //This will stop the event from being propagated to parent elements. event.preventDefault(); // because cancelBubble(Boolean)

Re: Making the Slider Bar included in the Google Web Toolkit Incubator Vertical

2011-07-25 Thread darkflame
This would be very nice, but I think impossible with the current implementation. You could try this one; http://code.google.com/p/gwt-slider-bar/ But that gave me problems when I used it. Really GWT needs its own native slider class, seeing as Incubator is depricated. On Jul 24, 12:45 am,

Re: Google beta plugin 2.4

2011-07-25 Thread Bademus -
May be this (http://code.google.com/intl/be-BY/eclipse/beta/docs/download.html)? *No repository found at http://dl.google.com/eclipse/plugin/beta/3.7.** * -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web

Re: Google beta plugin 2.4

2011-07-25 Thread David Chandler
Ah, thanks. That doc is incorrect for the 2.4 beta. The GPE 2.4 beta is not available for 3.7, but the 2.4 release will be. /dmc On Mon, Jul 25, 2011 at 3:36 PM, Bademus - bade...@gmail.com wrote: May be this (http://code.google.com/intl/be-BY/eclipse/beta/docs/download.html)? No repository

Re: GWT Developer Plugin on Safari 5.1 (OS X Lion 10.7) doesn't load

2011-07-25 Thread David Chandler
Good luck, Eric :-) It likely requires non-trivial changes (which is why the GWT team hasn't done it yet). We're currently evaluating how to handle the recent Firefox as well as Safari changes going forward. The FF change is especially onerous as it now requires engineering effort every 6 weeks

Re: GWT 2.4 - What and when?

2011-07-25 Thread Bademus -
Searching the same info... http://code.google.com/p/google-web-toolkit/wiki/RequestFactory_2_4 -- 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: RequestFactory create proxy object serverside

2011-07-25 Thread Ryan McFall
I don't think this will work, nor do I think it should. As far as I understand it, when you send a proxy reference via a Request, the RF framework attempts to find the server-side entity the proxy is referencing (using the ID), and then calls the associated method in your service implementation

Re: GWT Developer Plugin on Safari 5.1 (OS X Lion 10.7) doesn't load

2011-07-25 Thread Jeff Chimene
On 07/25/2011 02:55 PM, David Chandler wrote: (snip) We're currently evaluating how to handle the recent Firefox as well as Safari changes going forward. The FF change is especially onerous as it now requires engineering effort every 6 weeks to stay up to date. /dmc I'd like to suggest

Re: GWT Developer Plugin on Safari 5.1 (OS X Lion 10.7) doesn't load

2011-07-25 Thread David Chandler
Sure, do you mean the GWT community or some other? Dev mode plugins are open source, so if someone has interest in keeping them up to date, we're all ears... /dmc On Mon, Jul 25, 2011 at 4:13 PM, Jeff Chimene jchim...@gmail.com wrote: On 07/25/2011 02:55 PM, David Chandler wrote: (snip)

Re: GWT 2.4 - What and when?

2011-07-25 Thread David Chandler
Release notes will accompany the actual release... there are some new features in GPE, as well. On Mon, Jul 25, 2011 at 4:07 PM, Bademus - bade...@gmail.com wrote: Searching the same info... http://code.google.com/p/google-web-toolkit/wiki/RequestFactory_2_4 -- You received this message

Re: GWT Developer Plugin on Safari 5.1 (OS X Lion 10.7) doesn't load

2011-07-25 Thread Eric Ridge
On Mon, Jul 25, 2011 at 5:55 PM, David Chandler drfibona...@google.com wrote: Good luck, Eric :-) It likely requires non-trivial changes (which is why the GWT team hasn't done it yet). It's not clear yet what'll be required. It looks like whoever wrote the current plugin did a pretty decent

Re: GWT Developer Plugin on Safari 5.1 (OS X Lion 10.7) doesn't load

2011-07-25 Thread Jeff Chimene
On 07/25/2011 03:23 PM, David Chandler wrote: Sure, do you mean the GWT community or some other? Dev mode plugins are open source, so if someone has interest in keeping them up to date, we're all ears... /dmc The former. I was looking around in the repository, but didn't see it (them). But

Re: GWT frameworks?

2011-07-25 Thread Russ
personally, for mvp style apps, I have been using GWTP and loving it. On Mon, Jul 25, 2011 at 2:31 PM, joe kolba joekolb...@gmail.com wrote: I would be careful when calling them frameworks. They are more collections of custom widgets. For frameworks any of them libraries can use different

Re: Interested in helping a research study on Eclipse?

2011-07-25 Thread Mohsen Vakilian
Hi, We're happy to announce that CodingSpectator now supports Eclipse Indigo (3.7) -- the latest version of Eclipse. We are looking for more participants. Your participation in our study will help to keep the Eclipse platform innovative. If you couldn't participate in the study because you had

spurious blur event after update to 2.3

2011-07-25 Thread bhomass
I used the CellEditor.startEdit() feature on a tab header. after upgrade to GWT 2.3, I am getting unexplained blur events which continuous stops editing. for example, right after I start edit mode (by double clicking the header), there is a blur event. I used the code to ignore that. then after

Re: GWT frameworks?

2011-07-25 Thread Tomasz Gawel
still nobody mentioned gwt-query - which btw is truely a framework. while i dont like it's jquery-like naming convention - i stay impressed with the code itself, especially selector engine ;). as to gxt and smart gwt - it was not sth i was looking for so i abandoned using it. gwt itself is a

Re: Declare an array of panels in UiBinder

2011-07-25 Thread Tomasz Gawel
Alex, But if your widgets are to be inserted at runtime what you expect to define in uibinder template? a list or an array? it's not the right place because these are visiual templates, and a visual container for widgets is just a panel (or a div if u use htmlpanel as root container), Have i

Re: my biggest problem with gwt

2011-07-25 Thread Toby Reyelts
GWT RPC has been particularly offensive when it comes to being slow in Chrome. If you're using RPC, try running GWT from SVN head. You should see a massive improvement in Chrome performance. On Fri, Jul 15, 2011 at 11:12 AM, Dennis Haupt d.haup...@googlemail.comwrote: switching to dev mode took

How to use I18N in the header of DisclosurePanel() and g:item of ListBox?

2011-07-25 Thread Alex Luya
Maybe,it can be done like this: - g:item ui:msgLogin/ui:msg /g:item - But I want to use a global Constants,I mean using this: ui:with field='consts'

Re: How can I get the Expenses sample up and running?

2011-07-25 Thread Warren Tang
Hi David, I'm really thankful for your patience for answering this starter's question. I imported the project into eclipse from according to the readme file. Maven had an issue finding the gwt-servlet2.2.jar. I fixed it by changing the GWT version to 2.3.0 in pom.xml, and adding GWT SDK and

Re: How can I get the Expenses sample up and running?

2011-07-25 Thread Warren Tang
I'm using Windows 7 64bit / Eclipse 3.7 64bit / Latest SDKs. -- 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/-/lscrCM6kHSMJ. To post to this group,

Re: Google beta plugin 2.4

2011-07-25 Thread bbgott
Thank you, that was the info I was gathering. On Jul 25, 4:36 pm, Bademus - bade...@gmail.com wrote: May be this (http://code.google.com/intl/be-BY/eclipse/beta/docs/download.html)? *No repository found athttp://dl.google.com/eclipse/plugin/beta/3.7.** * -- You received this message

No source code is available for type com.google.gwt.autobean.shared.AutoBean

2011-07-25 Thread amos
Hi, I'm trying to use AutoBean to serialize and deserialize JSON. The application is failing with the error No source code is available for type com.google.gwt.autobean.shared.AutoBean. Do I need to add some includes or some other configuration in order to use AutoBean? Thanks, Amos -- You

Re: Eclipse Analyzing Sources Slow

2011-07-25 Thread gutto
Over the weekend my build times have reduced! Perhaps we were having some network issues which were exacerbating the problem. However, it's still slow. I have tracked the cause down to repeated requests for the DTD document http://dl.google.com/gwt/DTD/xhtml.ent that is referenced by each UI

Re: IE 8 and status code error 12030 - 12152

2011-07-25 Thread Craig Mitchell
I get this error in IE if I loose connection to the server during a RPC. So, for me, 12031 ERROR_INTERNET_CONNECTION_RESET, is an somewhat accurate description (sort of). -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this

Re: Cell Table Data Handling Performance

2011-07-25 Thread BST
Where does the datastore actually exist? -- 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/-/iy93M8fa5hwJ. To post to this group, send email to

[gwt-contrib] Re: Introducing a new CellTableBuilder API, which allows users to customize the structure of a CellT... (issue1501803)

2011-07-25 Thread Jeff Larsen
I had about an hour-hour and a half to play with this over the weekend and I have to say it looks great. I have to ask though, is there a reason why ColumnT,? doesn't contain the header and footer cell? It would sure make it easier for things like reordering columns, hiding columns. Also it

[gwt-contrib] Re: Introducing a new CellTableBuilder API, which allows users to customize the structure of a CellT... (issue1501803)

2011-07-25 Thread John LaBanca
The primary reason is that we didn't want to impose the restriction that all table based implementations of HasDataPresenter contain a header and a footer consisting of a single header/footer per column. You can imagine a variation of CellTable that does not include headers, or one that supports

Re: [gwt-contrib] Re: Introducing a new CellTableBuilder API, which allows users to customize the structure of a CellT... (issue1501803)

2011-07-25 Thread Michael Anstis
For what it's worth, I'd be in favour of the header and footer being decoupled from the columns. We had to home-bake a CellTable equivalent that has a header with multiple rows and cells that span multiple columns Just my 2c. :) On 25 July 2011 17:04, John LaBanca jlaba...@google.com

[gwt-contrib] Adding API method Column#setDefaultSortOrder(boolean isAscending) to control whether the column ... (issue1498806)

2011-07-25 Thread jlabanca
Reviewers: pengzhuang_google.com, Description: Adding API method Column#setDefaultSortOrder(boolean isAscending) to control whether the column should be sorted in ascending or descending order the first time it is clicked. Currently, the first time a column is clicked, it is sorted in ascending

[gwt-contrib] Re: Adds a static factory method to create Event.Type using type (issue1462806)

2011-07-25 Thread rjrjr
Thanks, this is nice. Would you mind expanding the patch to make some existing event types use it? How about the set in com.google.gwt.event.logical.shared? http://gwt-code-reviews.appspot.com/1462806/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Fixes a bug in AbstractPager where clearing the display and resetting it causes an NPE. (issue1500803)

2011-07-25 Thread jlabanca
Reviewers: andycheng_google.com, Description: Fixes a bug in AbstractPager where clearing the display and resetting it causes an NPE. Please review this at http://gwt-code-reviews.appspot.com/1500803/ Affected files: M user/src/com/google/gwt/user/cellview/client/AbstractPager.java M

[gwt-contrib] Re: DirectInstallLinker should not immediately remove the script tag it has inserted into the IFRAME... (issue1454802)

2011-07-25 Thread fredsa
Committed in r10293 http://gwt-code-reviews.appspot.com/1454802/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Use glass panel isntead of alert() when displaying dev mode connection failures, (issue1449802)

2011-07-25 Thread fredsa
Committed in r10204 http://gwt-code-reviews.appspot.com/1449802/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add the beginnings of new HTML5 drag and drop events (issue1398802)

2011-07-25 Thread fredsa
Committed in r9944 http://gwt-code-reviews.appspot.com/1398802/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add media events for audio/video elements (issue1385804)

2011-07-25 Thread fredsa
Committed in r9918 http://gwt-code-reviews.appspot.com/1385804/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix Javadoc for gesture/touch events (issue1383805)

2011-07-25 Thread fredsa
Committed in r9869 http://gwt-code-reviews.appspot.com/1383805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Quick patch, in follow up to r9344, which replaces remaining uses of the legacy 'compiler.emulat... (issue1338804)

2011-07-25 Thread fredsa
Committed in r9756 http://gwt-code-reviews.appspot.com/1338804/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Include the property name in the error message when a single-valued property does not have exact... (issue1348801)

2011-07-25 Thread fredsa
Committed in r9702 http://gwt-code-reviews.appspot.com/1348801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Remove list of JavaScriptException object properties when compiler.stackTrace = emulated (issue1310802)

2011-07-25 Thread fredsa
Committed in r9672 http://gwt-code-reviews.appspot.com/1310802/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Updated StackTraceDeobfuscator javadoc in follow up to r9162. (issue1321801)

2011-07-25 Thread fredsa
Committed in r9604 http://gwt-code-reviews.appspot.com/1321801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Re-enable XML parse test, which was previously failing in one Safari configuration in Production... (issue1229801)

2011-07-25 Thread fredsa
Committed in r9503 http://gwt-code-reviews.appspot.com/1229801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Re-enable a few style tests now that old linux hosted mode is gone (issue1228801)

2011-07-25 Thread fredsa
Committed in r9499 http://gwt-code-reviews.appspot.com/1228801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Replace most user/developer visible references to hosted/web mode with Development/Production Mode (issue1221801)

2011-07-25 Thread fredsa
Committed in r9459 http://gwt-code-reviews.appspot.com/1221801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: - Use z-index to layer multiple notifications in hosted.html (issue1323801)

2011-07-25 Thread fredsa
Committed in r9758 http://gwt-code-reviews.appspot.com/1323801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

  1   2   >