Re: Strict Mode - replacement for HorizontalPanel needed

2010-12-15 Thread l.denardo
AFAIK, if you use nested layout panels you must explicitly set the size of the container panel (i.e. your DockLayoutPanel) to 100%-100% (or whatever you want) to make the children visible, otherwise they will not show. I think there are some discussion about it in the groups, and I verified

Re: StackLayoutPanel Behaving Strangely

2010-12-15 Thread Nirmal
When using a *LayoutPanel inside a non-LayoutPanel; you need to explicitly set size of the LayoutPanel. Regards, Nirmal -- 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: RequestFactory: return persisted ID in proxy after successful persist()

2010-12-15 Thread Y2i
EntityProxyChange.registerForProxyType(...) can be used to get the ID of the persisted object. The receiver's EntityProxyChange.HandlerPersonProxy.onProxyChange(EntityProxyChangePersonProxy event) will be called. event.getWriteOperation() should return PERSIST event.getProxyId() should return the

Re: enable and disable checkBoxCells in a a Celltable

2010-12-15 Thread pfc09 pfc09
OK, I see! Thank you very much :) 2010/12/15 John LaBanca jlaba...@google.com Cell#render() renders the Cell contents as Html into the SafeHtmlBuilder. If you create your own CustomCheckboxCell, you can render a checkbox however you want. You're render method would look something like the

Re: Manipulate localized date on the server side

2010-12-15 Thread Slava Lovkiy
Other option could be to store dates using server's timezone but retaining the time and date portion coming from the client. I.e. if user accesses facility on 12/01 at 1:30 am GMT-5, and the server time is GMT+2, the resulting date stored in database would be 12/01 at 1:30 am GMT+2. And assuming

Hierarchical Places in GWT 2.1

2010-12-15 Thread dominic jansen
Hey, is there a way to implement hierarchical places in gwt 2.1? E.g. i want: http://www.myexample.com/foo/bar In gwt 2.1 i get sth like this: http://www.myexample.com#foo:bar Regarding some posts of Thomas Broyer and the GWTP team it looks like there is no direct way to use hierarchical

Re: Http Headers

2010-12-15 Thread PeteUK
On Monday, December 13, 2010 6:56:31 PM UTC, Thomas Broyer wrote: See also: http://code.google.com/webtoolkit/articles/dynamic_host_page.html That's a great page. Introduces the method of servlet writing a javascript variable which is much better than the hidden form variables or cookie

Re: ClassT is not serializable ?

2010-12-15 Thread yves
Indeed, it seems to be good solutions too. Thanks Yves On 15 déc, 10:15, Paul Robinson ukcue...@gmail.com wrote: You don't have to hard code anything to send class names. In the client, you can use this: class MyTypeT extends MyGen  implements Serializable {     String className;    

Re: onResize issue with IE 7

2010-12-15 Thread Magnus
After adding the above code into my onResize method, my browser hangs... -- 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: extract substring from within 2 tokens

2010-12-15 Thread Thomas Broyer
First, java.util.regex is not emulated in GWT, so there's no reason to replace Apache Commons with java Regex. There's however a com.google.gwt.regexp module. You could use something like: RegExp r = RegExp.compile(ID:(.*?):ID, g); MatchResult m = r.exec(description); if (m != null) {

Re: RequestFactory, ServiceLocator and Spring

2010-12-15 Thread Thomas Broyer
RequestFactory will actually cache them (see the ServiceLayerCache class, both the ServiceLocator instance, associated with a given RequestContext class, and the service instance, associated with a given method, are cached, using memoization). -- You received this message because you are

Re: build GWT from source, only can do on Linux?

2010-12-15 Thread salk31
Looks like it is not finding basic things like the servlet api jar and htmlunit in the compile classpath. The tools checkout definitely in the right place and the env variable correct? This bit is bog standard Java so should compile fine. I think the documentation is just about compiling native

Re: RequestFactory: return persisted ID in proxy after successful persist()

2010-12-15 Thread Thomas Broyer
On Wednesday, December 15, 2010 9:14:03 AM UTC+1, Y2i wrote: EntityProxyChange.registerForProxyType(...) can be used to get the ID of the persisted object. The receiver's EntityProxyChange.HandlerPersonProxy.onProxyChange(EntityProxyChangePersonProxy event) will be called.

Re: RequestFactory: return persisted ID in proxy after successful persist()

2010-12-15 Thread Thomas Broyer
On Wednesday, December 15, 2010 6:14:10 AM UTC+1, RyanD wrote: This might be better logged as a feature request, but I wanted to check that I hadn't missed something first. Given something like this: PersonProxy person = context.create(PersonProxy.class); person.setName(name);

How to export an image (s) from a GWT module.

2010-12-15 Thread Michal
Hi, I've created a GWT widget module MyModule as a separate project in Eclipse. My main GWT project MySite is using MyModule. MyModule supplies a composite GWT widget to MySite. MyModule's widget's css style uses a particular image. My question is how do I configure MyModule to export the

Property Provider for specific Users Agent

2010-12-15 Thread Patou
Hello, I create a property for know the type of mobile browser (iphone, android, skyfire, firefox_mobile, opera_mobile or not a phone browser). The problème is now I have 6 user agents and 6 phone user agent, it's build 36 permissions juste for the user agent, with internationalisation, there are

CssResource @def in UiBinder

2010-12-15 Thread John
I'm trying to use a set of common @def statements across multiple child projects. I cannot directly reference the css file in the uiBinder - its in another project. I need a way to set the ui:style tag to import / use / set source the css with @def statements from a CssResource inside of a

Re: GWT 2.1 DateTimeFormat locale changes?

2010-12-15 Thread jhulford
This message is several days old, but I just ran into this too and wanted to avoid having to update my host pages w/ the meta tags since I'm only using the one locale as well. To do this, add the following to your module's config file (.gwt.xml): inherits name=com.google.gwt.i18n.I18N/

Re: RequestFactory: return persisted ID in proxy after successful persist()

2010-12-15 Thread RyanD
Of course! Thanks, Thomas. I keep forgetting that these aren't magical methods, even persist(). Problem solved. On Dec 15, 3:56 am, Thomas Broyer t.bro...@gmail.com wrote: On Wednesday, December 15, 2010 6:14:10 AM UTC+1, RyanD wrote: This might be better logged as a feature request, but I

Re: onResize issue with IE 7

2010-12-15 Thread Philippe Beaudoin
Weird. Could you have some strange circular widget hierarchy? On Wed, Dec 15, 2010 at 3:26 AM, Magnus alpineblas...@googlemail.com wrote: After adding the above code into my onResize method, my browser hangs... -- You received this message because you are subscribed to the Google Groups

Re: Property Provider for specific Users Agent

2010-12-15 Thread Thomas Broyer
On Wednesday, December 15, 2010 4:00:58 PM UTC+1, Patou wrote: Hello, I create a property for know the type of mobile browser (iphone, android, skyfire, firefox_mobile, opera_mobile or not a phone browser). The problème is now I have 6 user agents and 6 phone user agent, it's build 36

Re: Why won't the GWT 2.1 MVP example compile?

2010-12-15 Thread Y2i
It looks like you didn't inherit com.google.gwt.activity.Activity module On Dec 14, 2:23 pm, Ingert Doe inge...@gmail.com wrote: Hello! I have just spent hours trying to get the GWT 2.1 MVP example to compile but it just won't work. I can't for the life of me understand what is wrong here.

Re: MVP Issue

2010-12-15 Thread PhilBeaudoin
What Myles describe is discussed here: http://code.google.com/webtoolkit/articles/mvp-architecture-2.html And there: http://arcbees.wordpress.com/2010/09/18/uihandlers-and-supervising-controlers/ It really makes it easier to use cool features like @UiHandler, however if you want to keep your old

Re: Manipulate localized date on the server side

2010-12-15 Thread Sydney
My problem is not really how to store the date. I store them as GMT. My question is more about where should I run the code to process these dates in a localized manner. Either I do it on the server side to avoid sending too much data over the wire. In that case I need to get the client locale

Re: file download using gwt and Servlet

2010-12-15 Thread Jim Douglas
http://groups.google.com/group/google-web-toolkit/browse_thread/thread/8c708ac2da186d17/ca92d9d8f78a0e19 On Dec 15, 5:20 am, Bhaswanth Gattineni bhaswant...@gmail.com wrote: Hi , I need to implement file download .I don't want give any server side file urls to download directly .I created a

Re: RequestFactory: return persisted ID in proxy after successful persist()

2010-12-15 Thread Y2i
It returns the stable id, which you already have with person.stableId(). May be you can use stable id to implement PersonPlace with the help of RequestFactory.getHistoryToken(EntityProxyId? proxy) and RequestFactory.getProxyId(String historyToken)? -- You received this message because you are

Re: To GWT or Not to GWT

2010-12-15 Thread Eric Ayers
OK, fair enough. I just wasn't sure if you had the Gadget problem space specifically in mind. On Wed, Dec 15, 2010 at 10:10 AM, bkard...@gmail.com bkard...@gmail.com wrote: Just in case it is not clear what I am trying to ask... The original question post began by (I thought) implying that

Re: A vertical scroll bar problem in CellBrowser

2010-12-15 Thread Y2i
Thanks for accepting the issue John! On Dec 15, 5:34 am, John LaBanca jlaba...@google.com wrote: Thanks.  I'll try to fix it for GWT 2.2. Thanks, John LaBanca jlaba...@google.com On Tue, Dec 14, 2010 at 10:03 PM, Y2i yur...@gmail.com wrote: Thanks for your reply John! I created

Re: Jetty WTP problems (Jetty is publishing to temp dir)

2010-12-15 Thread Thomas Broyer
Jetty WTP does not normally package a WAR, so there's no need to extract it anywhere. It copies the resources into the workspace's .metadata (tmp0/wtpwebapps/project name) and creates a Jetty Context XML file (tmp0/contexts/project name.xml) that further configures the webapp. To re-publish

Re: how can i add my voice in my gwt application as time of regi

2010-12-15 Thread David Chandler
Assuming you can find an HTML / JS feature that allows access to the user's microphone (I'm not aware of any), you could create a GWT wrapper for it using a JSNI method similar to how gwt-mobile-webkit wraps HTML 5 capabilities. Also see the gwt-voices project for sound output (but not input,

Re: To GWT or Not to GWT

2010-12-15 Thread bkard...@gmail.com
I see Google Web Toolkit, Atlanta, GA USA after your name, so I expect that you are just the kind of person whose opinion I'm looking for... What say you? -- 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: Property Provider for specific Users Agent

2010-12-15 Thread Patrice De Saint Steban
Thanks Thomas, It's was the solution ! -- 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: Is encryption over RCP possible?

2010-12-15 Thread UseTheFork
Hi Rob, On Dec 15, 9:39 am, Rob Coops rco...@gmail.com wrote: Lets sum this up nice and quick...    - SSL/TLS uses certificates and is according to most as save as it gets    - MITM attacks can and do happen, they could theoretically even mess with    SSL/TLS communication    - SSL/TLS MITM

JSONP and single signon (JOSSO)

2010-12-15 Thread koma
Hi I am developing a GWT app that talks to a JSONP service. The HTML host page is on a different domain from the JSONP service. The HTML host page is protected by a single signon service JOSSO ( http://www.josso.org) The JSONP service is protected by the same single signon service. The results

Re: GWT 2.1 DateTimeFormat locale changes?

2010-12-15 Thread Jim Douglas
I tried to set the default locale using another bit of XML found at http://code.google.com/intl/es-AR/webtoolkit/doc/latest/DevGuideI18nL..., but I could not even get the GWT compile to work when including that XML. Me too; I thought I was just missing something. The documentation says to

Re: To GWT or Not to GWT

2010-12-15 Thread Eric Ayers
I chimed in because I maintain the gwt-gadgets API. Personally, I could come up with some pathological cases, can't think of a single good reason to not use GWT :-) There, now maybe you will get some responses. On Wed, Dec 15, 2010 at 12:05 PM, bkard...@gmail.com bkard...@gmail.com wrote: I

Re: Is encryption over RCP possible?

2010-12-15 Thread Sripathi Krishnan
Explain me how Mallory can put in a fake/invalid/duplicate/whatever SSL certificate when Alice and Bob are communicating. 1. Mallory can create a fake certificate and present it to Alice; but when Alice verifies the cert with Trent (ie. Verisign) she will catch the MITM 2. Mallory can

CellBrowser default and min width for first column.

2010-12-15 Thread Akito Nozaki
From glancing at the source there is no way to set the minimum width for the first column? Also the document of setMinimumColumnWidth isn't very clear on what it wants to do. Looking at the source it will only affect newly added minimum column width. Anything that is already there will not be

Re: Is encryption over RCP possible?

2010-12-15 Thread Rob Coops
Fair enough I have to say I have not seen that article before, interesting though... Anyway, see why I say use both: UNSECURE - CERT. EXCHANGE - CERT. VERIF - KEY NEGOTIATION - SECURE EXCHANGE - JS TRANSFER - CERT. EXCHANGE - CERT. VERIF - KEY NEGOTIATION - SECURE EXCHANGE - LOGIN FORM You site

Re: GWT + Google Maps (JSNI) put a map in a panel

2010-12-15 Thread Raphael André Bauer
On Wed, Dec 15, 2010 at 4:01 PM, Alberto sturialb...@gmail.com wrote: Thank You for you reply! I'm Italian... I can't use Map API for GWT because it supports only Maps API v2! So I'm using JSNI to work with the v3 Maps API, but I need a way to put a map in a panel and not in a DOM Node! Did

Re: To GWT or Not to GWT

2010-12-15 Thread David Chandler
Hi bkardell, I think you're not getting many responses because 1) The subject of to use GWT or not comes up on the list about once a month and it's getting old 2) This forum is for people wanting to use GWT, not for people who are wanting to not use GWT 3) You've asked a general question. Please

Re: To GWT or Not to GWT

2010-12-15 Thread clintjhill
I'll ask the same question in a different way. There are 2 widgets. The first is for Alerts and the second is for Messages. Both share a library for their services (get/parse JSON data). Both share a library for their UI (extending GWT or composites). Both are separate GWT projects (code base is

Re: How to add checkbox in header.

2010-12-15 Thread Dominik
Hi, what do you want to do, do you want to have a CheckBox in every row to select the row and a selectbox in the header to select every row at once or do just want to select every row without the ability to select a single row? On 14 Dez., 20:17, Diyko diyko...@gmail.com wrote: I need add

GWT 2.1 MVP Multiple activities clarification help

2010-12-15 Thread Milan Cvejic
Helo, i tried to understand post at http://tbroyer.posterous.com/gwt-21-activities-nesting-yagni but with no luck :( I tried following code: package com.hellomvp.client; import com.google.gwt.activity.shared.ActivityManager; import com.google.gwt.activity.shared.ActivityMapper; import

Re: To GWT or Not to GWT

2010-12-15 Thread Christian Goudreau
Why don't you compile them together ? If you're going to use it on the same page, then compile it together for that page and then, you wont have duplicated code. I personally use a lot of Gwt projects inside my own and this is a non issue. I really don't see why I wouldn't compile my app and

Re: To GWT or Not to GWT

2010-12-15 Thread David Chandler
In the example you've given, GWT would compile the shared code into the module containing the Widgets, so there is only one copy. Furthermore, any unused methods in the libraries are not compiled or downloaded, as the GWT compiler eliminates dead code. Furthermore, you can break up an app into

Can someone please unsubscribe joseph.fav...@olympus.com from this group?

2010-12-15 Thread Jim Douglas
He posted a single message to this group almost three years ago. Since that time, all of his postings have been out-of-office autoreplies: http://groups.google.com/groups/profile?enc_user=0sdkURkAAADkQuqE8Kha_msj4vXhMlxF5QXXejbiipzYx0bmzwEdUg I emeiled him directly asking to fix this a few

Re: How to add checkbox in header.

2010-12-15 Thread John LaBanca
Create a CheckboxCell that handles selection and put it into the header like subhrajyotim suggested. Call Header#setUpdater(ValueUpdater) to handle events when the checkbox is clicked. You'll probably want to use a DefaultSelectionModel, which supports selecting rows by default, then adding

Re: Window 7 IE8 Drop Down List Boxes open problem

2010-12-15 Thread skippy
This is atill a problem. However, it is in IE8 on Windows 7. On Nov 3, 7:29 am, skippy al.leh...@fisglobal.com wrote:   @UiField ListBox groupListBox;   loadGroupListBox(workingLists, groupListBox);     private void loadGroupListBox(ArrayListListBoxItem itemList, ListBox listBox)     {  

Re: CssResource @def in UiBinder

2010-12-15 Thread Myles Bostwick
I'm not sure if this is exactly what you're talking about or not, but I've got a common ResourceBundle that I use in my uibinder that I use like so: Included in ui.xml ui:with field='res' type='com.pelco.phobos.interfaces.IResources' / Included in view @UiFactory /* this method allows

Re: Can someone please unsubscribe joseph.fav...@olympus.com from this group?

2010-12-15 Thread Isaac Truett
I made a filter while back to mark those as spam. But, yeah, maybe moderation could be re-enabled on his membership? On Wed, Dec 15, 2010 at 1:37 PM, Jim Douglas jdou...@basis.com wrote: He posted a single message to this group almost three years ago. Since that time, all of his postings have

Re: Can someone please unsubscribe joseph.fav...@olympus.com from this group?

2010-12-15 Thread David Chandler
Thanks for the heads up. I've taken care of it. FYI, the best place to make such requests is google-web-toolkit+ow...@googlegroups.com /dmc On Wed, Dec 15, 2010 at 1:37 PM, Jim Douglas jdou...@basis.com wrote: He posted a single message to this group almost three years ago. Since that time,

Re: To GWT or Not to GWT

2010-12-15 Thread clintjhill
To add an important part to the conversation. Widget #1 is developed by a team in CA. Widget #2 is developed by a team in AZ. They both have access to and utilize the 3 shared libraries. Furthermore - the intent is that these widgets be capable of landing in the same page but also possibly

Re: To GWT or Not to GWT

2010-12-15 Thread bkard...@gmail.com
Ok, a few things. 1) Thanks for the response. 2) Please have some patience, I'm really trying my best to communicate what seems to me a perfectly rational question that I feel like I am directing at exactly the right people. If I come across unclearly, I will be more than happy to try to

How to display an ampersand using UiBinder?

2010-12-15 Thread Hilco Wijbenga
Hi all, I want to do display something like A B C. ?xml version=1.0 encoding=UTF-8? !DOCTYPE ui:UiBinder SYSTEM http://dl.google.com/gwt/DTD/xhtml.ent; ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder' xmlns:g='urn:import:com.google.gwt.user.client.ui' g:LabelA amp; B #38; C/g:Label

Insert TabLayoutPanel in a SimplePanel

2010-12-15 Thread Aldo Neto
Hi all, I need to create a TabLayoutPanel and insert it as part of my editing page. In other words, I'm filling a given form and as part of that form I need some information to display inside the Tabs. I'm using the DockLayoutPanel to split the screen and as part of the center I have a

Re: To GWT or Not to GWT

2010-12-15 Thread bkard...@gmail.com
So Christian... I get what you are saying and that is actually what you would do if you owned it all as one thing, I totally agree... I think that the showcase app is probably like that and I have no problem with it... Makes sense. However in the iGoogle-esq example/question, those widgets are

Is there an event or something I can catch after a CellTree has completely rendered it's children to the DOM?

2010-12-15 Thread Blackberet
I have a CellTree in a ScrollLayoutPanel. I really need to be able to scroll a cell into view when it is selected. I have two ways of selecting a cell; directly by the user, and indirectly with a next/previous node button. When next is clicked and the next cell is not visible in the the

Re: To GWT or Not to GWT

2010-12-15 Thread Christian Goudreau
Are you saying that you would recompile and redeploy the whole app every time this happens? Well if you're thinking about a plug in-like application where third parties register plug in for your application and that your clients must have access to those newly added plug in. Well, yes. Anyway

Re: To GWT or Not to GWT

2010-12-15 Thread David Chandler
Fair enough, bkardell. GWT cannot optimize code that cannot be compiled together. If it's a requirement for you that each widget is a separate JavaScript, then you'd have to compile a few and see whether the GWT optimizations such as dead code elimination outweigh the effects of compiling multiple

Re: To GWT or Not to GWT

2010-12-15 Thread Myles Bostwick
Even if the code is not being compiled together, it seems like a library module could be created that could then be shared by all widgets in this scenario. Someone please correct me if I'm wrong. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: To GWT or Not to GWT

2010-12-15 Thread Brian Kardell
Thanks David. I'll say that before posting anything on here I spent hours searching through these groups and found a lot of people looking for some kind of reuse very much related to this same kind of problem - but nothing especially helpful in the way of a solution... It almost seems like it

Re: To GWT or Not to GWT

2010-12-15 Thread Christian Goudreau
Even if the code is not being compiled together, it seems like a library module could be created that could then be shared by all widgets in this scenario. Someone please correct me if I'm wrong. I think so too, but then you will need something to communicate between every module using

Re: To GWT or Not to GWT

2010-12-15 Thread Brian Kardell
Yeah - it really would seem that way at the outset, but from what I'm seeing first hand and reading in the groups it's kind of not that way... If you have two things that are GWT at both ends (as opposed to say 1 external JS and 1 GWT) you can share GWT modules - but each compile that uses it

Re: To GWT or Not to GWT

2010-12-15 Thread zixzigma
On Dec 15, 11:07 am, clintjhill clint.h...@gmail.com wrote: To add an important part to the conversation. Widget #1 is developed by a team in CA. Widget #2 is developed by a team in AZ. They both have access to and utilize the 3 shared libraries. Distributed Teams, should use Distributed

Re: To GWT or Not to GWT

2010-12-15 Thread Christian Goudreau
Distributed Teams, should use Distributed Version Control Systems. doesnt matter they are in different rooms or different continents, they commit to same Source Code Repository! I have to agree with that ! On Wed, Dec 15, 2010 at 3:29 PM, zixzigma zixzi...@gmail.com wrote: On Dec 15,

Re: To GWT or Not to GWT

2010-12-15 Thread clintjhill
On the face of it. Sure. But until you understand a development environment - don't be hasty with absolutes. On Dec 15, 1:30 pm, Christian Goudreau goudreau.christ...@gmail.com wrote: Distributed Teams, should use Distributed Version Control Systems. doesnt matter they are in different rooms

Re: CssResource @def in UiBinder

2010-12-15 Thread John
Not really what I'm going for. You get that same functionality with ui:with field='common' type='agt.fathom.ifathom.common.client.CommonBundle' / I want to be able to do: common.css - @def COLOR_THREE #aaeeaa; *.ui.xml - ui:style .myViewSpecificCss { border: 1px solid

Re: To GWT or Not to GWT

2010-12-15 Thread zixzigma
if you use JQuery or any other Library, there is a core JSLibrary, and third party plugins. in a typical app/site you end up adding plugin after plugin to your site/app. each of those plugins are developed by separate developer somewhere in the world. they might have used similar utility

Re: To GWT or Not to GWT

2010-12-15 Thread bkard...@gmail.com
Yeah... That's a red herring, let's not pursue that any further :) It has nothing to do with anyone's location - everything to do with separate codebases/projects. On Dec 15, 3:30 pm, Christian Goudreau goudreau.christ...@gmail.com wrote: Distributed Teams, should use Distributed Version

Re: To GWT or Not to GWT

2010-12-15 Thread David Chandler
Myles, If your library code is JavaScript, you can always use JSNI methods in GWT to call it. You could turn off optimizations in order to make GWT produce such a JS, but GWT is designed to produce a highly-optimized JavaScript for your app, not lots of little library JavaScripts, each with

Re: To GWT or Not to GWT

2010-12-15 Thread David Chandler
Brian, Yes, all of GWT is open source. For more info, see http://code.google.com/webtoolkit/makinggwtbetter.html Happy exploring. /dmc On Wed, Dec 15, 2010 at 3:18 PM, Brian Kardell bkard...@gmail.com wrote: Thanks David. I'll say that before posting anything on here I spent hours

importing sample and tutorial apps

2010-12-15 Thread Richard Hall
Like my noob friend above, I've also had lots of difficulty trying to import GWT sample apps, and other than slowly copy-pasting portions of code and reconfiguring, I cannot find any other way to import apps like the Sample Mail app or others like it. I absolutely cannot believe that this kind of

Re: importing sample and tutorial apps

2010-12-15 Thread David Chandler
Richard, Agreed, we need better docs on this. All the Eclipse sample projects are under the eclipse folder in the root dir. You should be able to import them into Eclipse with File | Import existing project. Or is that what you're trying? /dmc On Wed, Dec 15, 2010 at 3:41 PM, Richard Hall

Re: Jetty WTP problems (Jetty is publishing to temp dir)

2010-12-15 Thread Peter Barker
It's working OK for all 5 developers of our team (I'm the only one on Windows, all others on Ubuntu 10.04 or 10.10) I'm going through the points you mentioned but wonder if you could tell me what version of Jetty you're using on Windows? I'm on 6.1.26. Thanks, Pete -- You received

Re: Jetty WTP problems (Jetty is publishing to temp dir)

2010-12-15 Thread Peter Barker
On Wednesday, December 15, 2010 9:29:43 PM UTC, Peter Barker wrote: It's working OK for all 5 developers of our team (I'm the only one on Windows, all others on Ubuntu 10.04 or 10.10) I'm going through the points you mentioned but wonder if you could tell me what version of Jetty you're

Re: How to display an ampersand using UiBinder?

2010-12-15 Thread Mauro Bertapelle
Label is not meant to contain html, use an HTML class instead: g:HTMLA amp; B/g:HTML -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group,

Re: To GWT or Not to GWT

2010-12-15 Thread bkard...@gmail.com
I'm not really sure how to respond to that other than to say, yes, we understand the alternatives and the theory/practice :) Thanks. -- 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: importing sample and tutorial apps

2010-12-15 Thread Richard Hall
It is what I'm trying to do, but the install of the GWT SDK samples directory seems to be missing whatever build and/or configuration files are required to tell Eclipse that there are Java GWT projects in that folder - this is what my SDK folder contains: build.xml \DynaTable \DynaTableRf

Re: To GWT or Not to GWT

2010-12-15 Thread Paul Robinson
I haven't used gwt-exporter, or any non-trivial JSNI, so what I'm about to say may be rubbish. http://code.google.com/p/gwt-exporter/ If you want multiple gadget-like things to work together that have been compiled separately, you could: (1) Put each gadget-like thing into its own project (2)

Re: importing sample and tutorial apps

2010-12-15 Thread Chris Conroy
the eclipse projects are underneath trunk/eclipse/samples The samples don't have the GWT nature set for GPE to know that they are GWT projects. This is partly legacy and partly out of concern for those that don't use GPE. Thought there has been some talk about modernizing them (read: GPE'ifying

Re: How to display an ampersand using UiBinder?

2010-12-15 Thread Nick Newman
You say that using A B C obviously fails (because the ampersand is illegal in the XML). Does using a CDATA section to make it legal work? Nick On Wed, Dec 15, 2010 at 3:31 PM, Mauro Bertapelle mauro.bertape...@gmail.com wrote: Label is not meant to contain html, use an HTML class instead:

Re: Db Connectivity

2010-12-15 Thread Ashok
Hi, Asynchronous calls? What does this mean? I tried using threads. But,it gives the error: ClassName cannot be found in the source package! If you can give some example pages on Asynchronous calls, would be very helpful. Thanks in advance! -- You received this message because you are

Browser plugins (quicktime, custom) in GWT

2010-12-15 Thread Myles Bostwick
I found http://code.google.com/p/bst-player/ for doing players the GWT way and it's just what I was looking for, except it seems to always include everything even if only a Quicktime player is used. Are there any more choices out there? I certainly can modify this code, but why re-invent the

Re: How to display an ampersand using UiBinder?

2010-12-15 Thread Hilco Wijbenga
On 15 December 2010 15:06, Nick Newman nick.x.new...@gmail.com wrote: You say that using A B C obviously fails (because the ampersand is illegal in the XML).  Does using a CDATA section to make it legal work? :-) Nice one! Yes, GWT finds that acceptable. Unfortunately, I still need to use

Re: Db Connectivity

2010-12-15 Thread David Chandler
http://code.google.com/webtoolkit/doc/latest/DevGuideServerCommunication.html On Wed, Dec 15, 2010 at 6:39 PM, Ashok uashoksun...@gmail.com wrote: Hi,  Asynchronous calls? What does this mean? I tried using threads. But,it gives the error: ClassName cannot be found in the source package! If

Re: Db Connectivity

2010-12-15 Thread John LaBanca
Thanks, John LaBanca jlaba...@google.com On Wed, Dec 15, 2010 at 7:35 PM, David Chandler drfibona...@google.comwrote: http://code.google.com/webtoolkit/doc/latest/DevGuideServerCommunication.html On Wed, Dec 15, 2010 at 6:39 PM, Ashok uashoksun...@gmail.com wrote: Hi, Asynchronous

Re: build GWT from source, only can do on Linux?

2010-12-15 Thread Mike
yes, i'm sure i put GWT_TOOLS right, because when i manually remove the tools folder, when compile, it pops GWT_TOOLS not set. i also followed the many threads talking about this topic, i tried nearly every methods but no luck, hope someone made this successfully shed some light on this.

Re: Db Connectivity

2010-12-15 Thread David Chandler
Vindhya, Getting back to the root of your original question, you can't connect directly to a database with GWT because there's no way to connect to a database directly from JavaScript. Instead, you create a GWT service and implement it on the server, where you can connect to a database using JDBC

Re: GWT + Google Maps (JSNI) put a map in a panel

2010-12-15 Thread mp31415
Last time I tried that project (gwt-google-maps-v3) it was rather raw (buggy). And it seems completely dead by now as there were no new releases since May, 2010. It's sad that there is no decent java wrapper for the v3 maps. -- You received this message because you are subscribed to the Google

Re: How to reliably detect a paste operation via mouse in TextBox?

2010-12-15 Thread Sunit Katkar
Any ideas?? - Sunit Katkar http://sunitkatkar.blogspot.com/ On Tue, Dec 14, 2010 at 2:25 PM, Sunit Katkar sunitkat...@gmail.com wrote: I have a simple GWT TextBox widget. When a user types anything in it, I listen for keyboard events and enable a button. Now if the user simply copies

Re: GWT as an external library (GWT bookmarklet)

2010-12-15 Thread amjibaly
Referencing the same question on stackoverflow: http://stackoverflow.com/questions/4434946/gwt-bookmarket-or-gwt-as-an-external-library On Dec 13, 4:53 pm, amjibaly amjib...@gmail.com wrote: I simply want to load a GWT app by adding a script tag to the DOM, however because the GWT linker uses

[gwt-contrib] Re: Make ExternalTextResource use Jsonp (issue1214801)

2010-12-15 Thread bobv
Implementation LGTM, just expand the test a bit and commit. http://gwt-code-reviews.appspot.com/1214801/diff/20001/21004 File user/src/com/google/gwt/resources/Resources.gwt.xml (right): http://gwt-code-reviews.appspot.com/1214801/diff/20001/21004#newcode83

[gwt-contrib] Re: Refactors TypeOracleMediator to avoid CompiledClass references. This way, we will be able to th... (issue1217801)

2010-12-15 Thread jbrosenberg
Do we want to hide this change initially behind a flag (e.g. -DXuseByteCodeToBuildTypeOracle)? http://gwt-code-reviews.appspot.com/1217801/diff/1/3 File dev/core/src/com/google/gwt/dev/javac/TypeOracleMediator.java (right): http://gwt-code-reviews.appspot.com/1217801/diff/1/3#newcode256

[gwt-contrib] Re: Refactors TypeOracleMediator to avoid CompiledClass references. This way, we will be able to th... (issue1217801)

2010-12-15 Thread zundel
Regarding the command line flag: At this point we aren't ready for it, this change doesn't change the logic of building the TypeOracle at all - we've been using byte code generated from JDT for a couple of years now. This change just reorganizes TypeOracleMediator so I can feed it byte code

[gwt-contrib] Re: Refactors TypeOracleMediator to avoid CompiledClass references. This way, we will be able to th... (issue1217801)

2010-12-15 Thread zundel
Added TODO(), renamed unit test to end in string 'Test' so it will be picked up in Ant. http://gwt-code-reviews.appspot.com/1217801/diff/1/3 File dev/core/src/com/google/gwt/dev/javac/TypeOracleMediator.java (right): http://gwt-code-reviews.appspot.com/1217801/diff/1/3#newcode256

[gwt-contrib] Re: Refactors TypeOracleMediator to avoid CompiledClass references. This way, we will be able to th... (issue1217801)

2010-12-15 Thread zundel
http://gwt-code-reviews.appspot.com/1217801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Refactors TypeOracleMediator to avoid CompiledClass references. This way, we will be able to th... (issue1217801)

2010-12-15 Thread zundel
http://gwt-code-reviews.appspot.com/1217801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Isolates the portion of TypeOracleMediator that (issue1188802)

2010-12-15 Thread zundel
This review is dead. See http://gwt-code-reviews.appspot.com/1217801/show http://gwt-code-reviews.appspot.com/1188802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Refactors TypeOracleMediator to avoid CompiledClass references. This way, we will be able to th... (issue1217801)

2010-12-15 Thread scottb
LGTM http://gwt-code-reviews.appspot.com/1217801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

  1   2   >