Re: CellTable of Strings

2013-08-26 Thread El Mentecato Mayor
Yes, create an object that will have column1, etc as attributes, then create a List and populate it with your source list however you want to (preferably you might want to send this list like your CellTable will use already populated from the server): public class Word { String column1; S

Re: RequestFactoryEditorDriver (or any type of Editor) and ValueChangedEvent

2013-03-20 Thread El Mentecato Mayor
I think you can do what you want with ValueAwareEditor: http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/editor/client/ValueAwareEditor.html On Thursday, March 14, 2013 12:34:09 PM UTC-4, Jonathan Jones wrote: > > Hi all, > > I am new to GWT 2.5 so please forgive me. > >

Re: DataGrid vertical scrollbar overlaps the last column

2013-02-11 Thread El Mentecato Mayor
I don't understand that documentation sentence you just quoted. What I've done is one of two things as a workaround: 1) set a ~20 pixels padding-right on the last column, or 2) set a size to the column to be ~20 pixels wider than what expect the content to be on the last column. On Friday, Febr

Re: State of client-side pdf file generation

2013-01-31 Thread El Mentecato Mayor
s. > 3.1 will have it for regular GWT based projects. > Similar to this > http://gwt4air.googlecode.com/svn/trunk/exporter/GwtAir.html > > > > > > 2013/1/31 El Mentecato Mayor > > >> Some time ago, the gwt4air project to do client-side file generation was

State of client-side pdf file generation

2013-01-31 Thread El Mentecato Mayor
Some time ago, the gwt4air project to do client-side file generation was mentioned (see https://groups.google.com/d/topic/google-web-toolkit/nhevJ3qxtMs/discussion). Now emitrom has taken ownership of that project according to the project's website (http://code.google.c

Re: use visualization javascript api in GWT

2013-01-30 Thread El Mentecato Mayor
If you really need something not provided here: http://code.google.com/p/gwt-google-apis/ or here: http://code.google.com/p/gwt-charts/ (see demo: http://gwt-charts.appspot.com/) (they're both GWT wrappers), look at the source code on how they've done it for the existing functionality. On the o

Re: How to execute afterStartup commands?

2013-01-29 Thread El Mentecato Mayor
You probably want to schedule a deferred command: https://developers.google.com/web-toolkit/doc/latest/DevGuideCodingBasicsDelayed#deferred On Tuesday, January 29, 2013 5:44:16 AM UTC-5, membersound wrote: > > Hi, > > how can I execute statements after the whole application has started up? > So

Re: RequestFactory Could not parse payload: payload[0] = N

2013-01-18 Thread El Mentecato Mayor
actoryServlet to log > the payload when there's an unrecoverable error, in addition to the > exception. > Could you please open an issue? (if there's none already) > > On Wednesday, January 16, 2013 7:08:44 PM UTC+1, El Mentecato Mayor wrote: >> >>

Re: RequestFactory Could not parse payload: payload[0] = N

2013-01-16 Thread El Mentecato Mayor
Just saw this error myself as well, slightly different message: Unexpected error: java.lang.RuntimeException: Could not parse payload: payload[0] = I using GWT 2.5 and no GAE. Stacktrace is exactly the same though. Don't know why or what it means, just that I get it so far when a specific reque

Re: server support

2012-12-21 Thread El Mentecato Mayor
GWT is mostly a client-side library, so any server you want. The only restrictions depend on the client-server communication method you want to use. GWT comes with basically three ways of doing that; 1) RequestBuilder, which you can use to transfer any format (text, xml, JSON) or style (RESTful

Re: Web Viewer for the ALMA Radio Telescope

2012-09-26 Thread El Mentecato Mayor
Satoshi, The link you provided doesn't work for me. It returns: Forbidden You don't have permission to access /portal/alma/sv.do on this server. On Monday, September 24, 2012 3:03:30 AM UTC-4, Satoshi Eguchi wrote: > > Hello! > I'm Satoshi Eguchi, a posdoc of National Astronomical Observatory o

Re: Cloning EntityProxies

2012-08-28 Thread El Mentecato Mayor
This works! Thanks. (just wanted to state that for the record). On Thursday, April 12, 2012 11:57:27 AM UTC-4, gwtomni gwtomni wrote: > > try with this: > > > AutoBean oldBean = AutoBeanUtils.getAutoBean(oldProxy); > AutoBean newBean = AutoBeanUtils.getAutoBean(newP

Re: DevMode for Firefox 14

2012-07-23 Thread El Mentecato Mayor
Many thanks to Allan! ALL: Please star this issue: https://code.google.com/p/chromium/issues/detail?id=138557&thanks=138557&ts=1343057729 it might help to have better support for GWT devmode development (GWT plugin) for Chrome, and we can forget about firefox. On Monday, July 23, 2012 8

Re: Problem creating custom gwt theme

2012-04-05 Thread El Mentecato Mayor
On Thursday, April 5, 2012 3:13:20 PM UTC-4, El Mentecato Mayor wrote: > > (this is from an old thread I know, but the question hasn't been answered > fully in this forum anywhere I see) > > So I want to create a custom gwt theme. To do this, I created a standalone > maven proj

Re: Problem creating custom gwt theme

2012-04-05 Thread El Mentecato Mayor
(this is from an old thread I know, but the question hasn't been answered fully in this forum anywhere I see) So I want to create a custom gwt theme. To do this, I created a standalone maven project with a similar dir structure that I see with the gwt standard theme inside gwt-user.jar. I packa

Re: Is multi-level fetch depth with RequestFactory possible?

2012-03-20 Thread El Mentecato Mayor
Thanks guys! That was it, I assumed those relationships would be fetched automatically. On Mar 20, 6:55 pm, Thomas Broyer wrote: > Are you passing "settings.settingDefinition" to the with() of your Request? > If not (only giving "settings") then that's expected. -- You received this message b

Re: GWT- Quirks mode :Is there any way to force Document mode to "Quirks" in GWT ?

2012-01-19 Thread El Mentecato Mayor
Using the "Transitional" doctype will make your app run in quirks mode: See: http://code.google.com/webtoolkit/doc/latest/tutorial/create.html#components Keep in mind that the layout panels introduced in GWT 2.0 work properly only under standards mode, at least at the time they were introduced

Re: Data-binding, Konckout.js

2011-05-03 Thread El Mentecato Mayor
Take a look at "Editors" in GWT: http://code.google.com/webtoolkit/doc/latest/DevGuideUiEditors.html On Apr 30, 9:35 am, Artem Nikulchenko wrote: > I've recently seen Knockout.js presentation at MIX 11 and it looks > amazing. It removes all boilerplate code around data-binding and looks > really

Re: shuttle component

2011-04-02 Thread El Mentecato Mayor
No, but it's very easy to create one. On Mar 30, 4:11 am, Vik wrote: > right so is this available in gwt? > > Thankx and Regards > > Vik > Founderhttp://www.sakshum.orghttp://blog.sakshum.org > > On Wed, Mar 30, 2011 at 1:12 PM, nino ekambi > wrote: > > > > > > > > > Do you mean something like

Re: problema de integracion con Eclipse

2011-03-28 Thread El Mentecato Mayor
No estoy seguro de como bajaste el plugin del que hablas (y qué plugin es), pero yo acabo de instalar el Google Plugin que incluye la última versión de GWT SDK y otras cosas en una instalación nueva de eclipse Helios también en Windows XP. Yo simplemente usé este url para instalarlos: http://dl.g

Re: How to implement Enter Key Submit Form in GWT

2011-02-25 Thread El Mentecato Mayor
If you want to do it when a PasswordTextBox is on focus for example (this is from my sign-in page): passwordTextBox.addKeyPressHandler(new KeyPressHandler() { public void onKeyPress(KeyPressEvent event) { if (((int)event.getCharCode()) == 13) { // User hit "Enter" key

Re: I need 2 Google IO tickets

2011-02-11 Thread El Mentecato Mayor
Well, I'm interested in getting a ticket too :-( (didn't expect the event to be sold out in half an hour or so). I'd also be interested in a get-together for GWT Developers, but I will only be in SF if I get a google IO ticket. On Feb 10, 6:41 am, István Szoboszlai wrote: > Hello, Sorry to pos

Re: GWT+SpringSecurity - handling session-timeout

2011-02-08 Thread El Mentecato Mayor
A few suggestions about sign-in are already here although maybe they don't touch much about session expiration: http://code.google.com/webtoolkit/articles/dynamic_host_page.html About the redirect you mentioned getting lost, my educated guess is that most likely the redirection is working but you

Re: onHover text on Tab

2011-01-11 Thread El Mentecato Mayor
You can set the "title" text on a widget that you use for the tab text, for instance: Label label = new Label("My Tab"); label.setTitle("This is my very helpful text"); tabPanel.add(myPageWidget, label); On Jan 10, 5:42 am, mohit wrote: > How can we show Help Text on hover of Tab element of GWT

Re: Dropping support for ie6?

2011-01-04 Thread El Mentecato Mayor
-1 for dropping ie6 (same here; big clients still use ie6-- unfortunately) +1 for adding ie9 On Dec 30 2010, 10:43 am, Peter Ondruska wrote: > I am very aware of that (working for very big bank which is still at IE6)... > Something has to be done. And there are already possibilities like Google >

Re: How can I collapse either the right or left child of a SplitLayoutPanel?

2010-11-09 Thread El Mentecato Mayor
How about mySplitPanel.setSplitPosition("0px")? On Oct 13, 1:49 pm, Blackberet wrote: > Is there a programmatic hook for this? > > 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 google-web-too

Re: accents problem

2010-05-19 Thread El Mentecato Mayor
You don't have to do any conversion unless you can't change the encoding of your file. With GWT, I only have been able to display these characters correctly using utf-8 (as specified in the GWT i18n documentation). Even if your characters look OK in whatever software program you're looking at, if

Re: Dialog is hidden behind Earth Map

2010-05-04 Thread El Mentecato Mayor
A solution (kind of the third option you mentioned, but you don't have to hide the map completely unless you want to move the dialog around-- on top of the map) is to use a "shimmer". Read it in this old thread, I use this method to get around this limitation with a Java applet: http://groups.goog

Re: MVP question

2010-02-17 Thread El Mentecato Mayor
I currently don't use MVP, but more like MVC where the View and Controller are sometimes in the same class (when the views/controllers are rather trivial), but regarding the example that Supercobra gave, and to answer your question Yaakov: Another way of sending model information is using interfac

Re: DialogBox broken in Firefox 3.6

2010-01-29 Thread El Mentecato Mayor
I actually fixed my problem by just specifying a background color for the iframe that is behind the dialog. JY: You might want to try upgrading gwt, 1.4.60 is rather old. On Jan 28, 11:37 am, El Mentecato Mayor wrote: > I noticed a slightly different problem a couple of days ago whe

Re: DialogBox broken in Firefox 3.6

2010-01-28 Thread El Mentecato Mayor
I noticed a slightly different problem a couple of days ago when I upgraded to FF3.6: I can drag fine a dialog (a specific dialog in my application, haven't tried the specific code above), but the dialog now appears below (in the Z direction) an applet on my page. Even with the "shimmer" solution

Re: FileUpload widget path name

2009-12-31 Thread El Mentecato Mayor
1) As far as I remember, you won't be able to get the full path to the filename in all browsers on the client side. You can do it on the server-side (in your servlet). 2) I don't think you will be able to do that (assuming your G: drive is either mapped to a unix directory using samba maybe, or to

Re: FileUpload widget path name

2009-12-31 Thread El Mentecato Mayor
1) As far as I remember, you won't be able to get the full path to the filename in all browsers on the client side. You can do it on the server-side (in your servlet). 2) I don't think you will be able to do that (assuming your G: drive is either mapped to a unix directory using samba maybe, or to

Re: How to make FileUpload widget readonly?

2009-12-31 Thread El Mentecato Mayor
Not as far as I know. What we do is hide the textbox (it's more of a hack though) by setting its size to zero if possible and/or placing a blank panel on top of it (varies by browser). Only the "Browse..." button is visible. On Dec 29, 12:51 am, Lakindu wrote: > Hi, > > Is there a way to make Fi

Re: Using Constants server-side?

2009-12-23 Thread El Mentecato Mayor
Search this list for a couple of solutions that allow you to reuse the client-side interfaces. You will need to make sure that both the properties files and the interfaces exist on both the client and server sides. I opted to simply use ResourceBundle and make my properties files available on the

Re: Geolocation without Gears?

2009-12-15 Thread El Mentecato Mayor
It's working for me (off by about a mile). On Dec 15, 4:24 pm, Sekhar Ravinutala wrote: > Thanks, this would've been great, except it's always returning null (even > tried with the API key). A few others seem to have the same problem (e.g., > here

Re: python gwt

2009-10-16 Thread El Mentecato Mayor
I think the answer relies not only in the popularity of Java vs. Python, but in the fact that Java is a static typed language, and one with a lot of tools already in existence which can help you debug and develop faster. One of the reasons you want to avoid coding in a scripting language (javascr

Re: GWT documentation available for download?

2009-10-15 Thread El Mentecato Mayor
There's an outdated version here: http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/6cadca3f1e1c9fcf/0235d6eb2c9df85d#0235d6eb2c9df85d On Oct 14, 7:37 am, jAY wrote: > Is it available for download? > > On Oct 2, 8:25 pm, mo wrote: > > > Hi everyone, > > > maybe you can he

Re: Best practice for several html pages

2009-09-14 Thread El Mentecato Mayor
In my case, the login page needs functionality shared with the regular app, so it is better to have a single module with two entry points. Anoher option is to divide it in three modules, login, app, shared- stuff and the first two inherit the shared-stuff. On Aug 5, 6:42 am, Insano wrote: > I am

Re: History -- invalidating a page

2009-09-08 Thread El Mentecato Mayor
1) Use the History mechanism (search the GWT docs or this forum for details) 2) Use something like this in your spring security config (withing your http tag, assuming you have one): or where you might also have this to enable the login page to be accessible: If you don't

Re: problem with FileUpload

2009-09-04 Thread El Mentecato Mayor
No. What you want is only possible with an applet (be it a flash, java, activex, etc applet which will request more permissions from the user to do what you need). Search for multiple file uploads in this group if you want to get into that. On Jul 17, 1:20 pm, jucimarjr wrote: > Hi, > I'm deal

Make selected item visible in ListBox on IE

2009-08-19 Thread El Mentecato Mayor
I have a ListBox that in most cases will have more items than are visible at a time (visibleItemCount). I then add a new item dynamically and set it to be selected using setItemSelected(idx, true). The item is added to the bottom of the ListBox, which is fine, but I would like the item to be visi

Re: reading from files other than english contains unwanted squares

2009-08-12 Thread El Mentecato Mayor
I'd check two things: 1. Are your files saved with the proper encoding? (utf8) 2. Does your html host file or whatever html file that displays your files' content has this: "content="text/html;charset=utf-8""? On Jun 16, 6:30 am, zujee wrote: > Hi All, > I have some files which contains english

Re: sizing ListBoxes inside container

2009-08-10 Thread El Mentecato Mayor
AFAIK, there's no way to do that, it's a limitation or bug that GWT has. If you do this (set a visible item count larger to what you know it will fit in the page), it will work on IE, but not on Firefox: VerticalPanel ui = new VerticalPanel(); ui.setBorderWidth(1); ui.setHeight("100%

Re: ListBox CSS

2009-07-21 Thread El Mentecato Mayor
Try adding a large z-index number to your CSS style like z-index: 1000; and report back. On Jun 10, 10:03 am, "stephen.sm...@paretopartners.com" wrote: > I have 2 seperate problems although im sure there related. > > Firstly i have a greyout panel (custom made), that is added to the > RootPanel,

Re: So Many Forum Messages per day... Can things be split up at all?

2009-07-21 Thread El Mentecato Mayor
Just select to receive one daily digest message instead of each email if you think this is too much. Or you could even turn off receiving messages at all and only use the web interface to see the messages and read only those that are of interest to you. I personally don't see a need to split up

Re: GAE + GWT + password transfer

2009-07-21 Thread El Mentecato Mayor
For what you're doing and the limitations you have mentioned, I would go with OpenID, that way you rely on third parties to do the authentication, and I think in most cases it will use https. I have used Spring Security to quickly setup openID as an authentication method (although I have never ru

Re: Spring Security login forwarding to blank page issue

2009-06-12 Thread El Mentecato Mayor
I'm experiencing the same. So far I'm blaming the problem on the application not being production ready yet, so it is buggy and sometimes I see some javascript errors. As these errors go away and the application stabilizes, I'll take a look at the problem more closely. But of course, if somebody

Re: Can we set Locale in GWT Hosted mode browser?????

2009-05-11 Thread El Mentecato Mayor
The same way you would set it in web mode ("?locale=en" appended to your app's URL). If you want it to be that locale by default when you launch hosted mode, then modify the URL in whatever launcher you have for Hosted mode to always have this locale. On May 8, 6:08 am, Nim wrote: > Hi , >    

Re: Ant problem

2009-04-17 Thread El Mentecato Mayor
If you're using eclipse (and probably most of the other IDEs), ant comes bundled with it so you can just use it. I just do this: set PATH=%PATH%;[ECLIPSE_HOME]/plugins/org.apache.ant_ [VERSION_BUILD_NUM]/bin and have ant available to run a build. On Apr 12, 4:26 am, chandrashekhar mekala wro

Re: GWT 1.6 - How do I change the default "war" directory name

2009-04-02 Thread El Mentecato Mayor
I'm curious, did you then use something like: -war src/your/app/path/public/WebContent assuming your static content was in a subdirectory of the public directory (?). And now you will need to have WEB-INF/lib inside your WebContent dir? I will need to do migrate to 1.6 sometime, and I just do

Re: warning when compiling RPC method with long[] return type

2009-03-24 Thread El Mentecato Mayor
Don't know, but try using Long instead. In general, if I remember right, the long type requires some extra processing due to the fact that JavaScript doesn't really support it, so some manipulation takes place in JavaScript to make it appear that it does. If you can, avoid using longs in your Rem

Re: Announcing GWT 1.6 Release Candidate

2009-03-21 Thread El Mentecato Mayor
he download file. On Mar 19, 11:32 am, El Mentecato Mayor wrote: > I downloaded the file under openSUSE.  After bunzip2 does its thing, > the tar file has the mozilla* directory containing an extra "./" at > the start, and I get this error when trying to untar (for each file

Re: Announcing GWT 1.6 Release Candidate

2009-03-19 Thread El Mentecato Mayor
I downloaded the file under openSUSE. After bunzip2 does its thing, the tar file has the mozilla* directory containing an extra "./" at the start, and I get this error when trying to untar (for each file under this mozilla* subdirectory): gwt-linux-1.6.2/./mozilla-1.7.12/gwt-dl-loadorder.conf: C

Re: PDF version of the GWT Developer Guide -- any time soon?

2009-03-18 Thread El Mentecato Mayor
I seem to remember somebody from google mentioning in this forum about the doc reader being added Gears support (for off-line access), but couldn't find it... sure would be nice to have a PDF version as well though. On Mar 18, 10:19 am, Brian wrote: > Yeah it is too bad it's not accessible offli

Re: como agregar imagen bmp en backround

2009-03-18 Thread El Mentecato Mayor
Pacholi, En tu página principal, simplemente usa un estilo CSS en el Panel que uses ahí que tenga una imagen de fondo, luego cambias en las demás páginas, si cambias el Panel, entonces se irá, si no, entonces simplemente cambias el estilo CSS por uno que no tenga esa imagen (usando .setStyleName(

Re: file upload like orkut

2009-03-18 Thread El Mentecato Mayor
e) Via a Java Applet f) Via an ActiveX Applet (IE/windows-only I think) On Mar 16, 7:51 am, Thomas Broyer wrote: > On 16 mar, 09:06, Adam T wrote: > > > File upload is done via either: > > > a) The FileUpload widget - if your happy for the user to select one > > file at a time, or > > b) Via a

Re: Translating on the server-side

2009-02-27 Thread El Mentecato Mayor
I'm not familiar with XLIFF, but I wonder how you distinguish there between \n and (if you want your paragraph to be on an html page as opposed to a console or some other output. Properties files at least allow you to distinguish between the two. If I remember correctly, XLIFF support is planned

Re: Translating on the server-side

2009-02-26 Thread El Mentecato Mayor
1) GWT's i18n can't be used as is, since the interfaces are meant to be used at compile-time and the actual text from the properties files gets put into the js/html files. You could reuse the properties files though if you ship them with your war/ear file, and on the server side, just use old Res

Re: Splitting application in modules

2009-02-25 Thread El Mentecato Mayor
You just answered your question; it is because you are using SmartGWT widgets (they add up to your size considerably). Separating your application into modules I don't think will help much to reduce the size. They will only help to organize the code if that's what you want and have too many clas

Re: GWT + FlowPanel + CSS = Tableless

2009-02-23 Thread El Mentecato Mayor
Except you forgot to mention that JQuery's Themeroller doesn't display properly on IE (not that I have anything against JQuery--a great library, but the things you are pointing out don't look as nice or as intended on the most popular browser, so that alone can make it undesirable in many cases).

Re: Hosted Mode crashes when embedding applet

2009-02-19 Thread El Mentecato Mayor
report your findings here! Otherwise, use the workaround I provided. On Feb 18, 3:56 pm, DAve wrote: > Thanks! > > Is there a bug filed with Sun or Google that I can track? > > El Mentecato Mayor wrote: > > Yes, this is a known problem. Hosted mode doesn't support applet

Re: Embedding a JavaScript-based widget in GWT?

2009-02-17 Thread El Mentecato Mayor
No, you need to add it to your host html page, not to an HTML widget, as Sumit described already. On Feb 17, 2:40 am, Venkat wrote: > Hi Sumit. > > I have to embed below javascript within HTML panel , is it possible, > if so please guide how to do that. > > http://www.macromedia.com/go/ > getfl

Re: HTML Widget

2009-02-17 Thread El Mentecato Mayor
I'm not sure what your question is, but if it is: "can I run the applet in the object tag shown using the HTML widget?" then the answer is yes, you should be able to. Just put your HTML widget in a visible panel and run it in web mode. It will NOT run in hosted mode. On Feb 17, 2:33 am, Venkat

Re: Hosted Mode crashes when embedding applet

2009-02-17 Thread El Mentecato Mayor
Yes, this is a known problem. Hosted mode doesn't support applets (not running a real html/javascript page), so you'll have to test your applet integration on web-mode only. I do something like this: if (GWT.isScript()) { // running on web mode applet = new AppletPanel(); } else {

Re: Question: How can I get login user from Windows in GWT?

2009-02-16 Thread El Mentecato Mayor
If the windows authentication uses some type of LDAP (ActiveDirectory for instance has some lever of LDAP compliance), you can achieve what you want with Spring Security (http://static.springframework.org/ spring-security/site/reference/html/springsecurity.html). On Feb 13, 5:24 am, Damien Picard

Re: GWT FileUpload

2009-02-11 Thread El Mentecato Mayor
Yes, and your question kdahm has been answered in this same forum. Just search and you'll find even sample code to do both client and server sides. On Feb 10, 4:29 pm, Ben Tilford wrote: > I think the apache commons file upload project is usually > used.http://commons.apache.org/fileupload/usin

Re: Can we load an html file and add it as a Widget?

2009-02-02 Thread El Mentecato Mayor
You could also pass your URL to a Frame widget. Of course if you don't mind "framing" an external page (although if it lives on your own server, not a big deal). On Feb 2, 2:10 am, "alex.d" wrote: > It's not really a widget(though you can probably make one). Just make > an RPC-call, let your b

Re: acentos en gwt

2009-01-30 Thread El Mentecato Mayor
Primero, di en dónde están tus caracteres (en tu archivo html--hosting page?) o en un archivo ".properties"? En el último caso, tu archivo debe grabarse con el set de caracteres apropiado (por ejemplo, utf8) para que funcione. Yo tengo una aplicación hecha con GWT que tiene inglés y español y no

Re: GWT and applets

2009-01-03 Thread El Mentecato Mayor
Looks like you're trying to compile your Applet code with GWT. That will never work (not emulated; obviously you don't want to convert your applet into Javascript, even if it were possible). Compile it with plain Javac outside your GWT project or on the server side of your project and then you i

Re: GWT 1.4: Getting file path for FileUpload?

2009-01-02 Thread El Mentecato Mayor
AFAIK, there's no way to do what you want with just JavaScript. We achieve what you described with a Java Applet, saving the preferred path on the server for each user. Of course it has the overload and drawbacks of an applet (heavier, JRE plugin required, etc), but on the plus side we support mu

Re: SuggestBox list in another Panel

2008-11-12 Thread El Mentecato Mayor
If I remember well, the Incubator has an RPC/Remote SuggestBox/Oracle that can take any widget to display the list. Search this group or the incubator project website/code to find out more details. I haven't tried doing this, so I can't provide more help. Good luck, and report back if you find or

Re: Creating a main site *and* an admin site

2008-11-07 Thread El Mentecato Mayor
I have the same requirement. At first, I thought about creating three projects, one that holds all shared functionality in it, and make it into a module that the other two would import, but since we're creating everything simultaneously, it becomes cumbersome (it would work well if we create the s

Re: Popups and dialogs appear below Java applets

2008-10-30 Thread El Mentecato Mayor
tBodyElement(), iframe); myDialog.hide(); It also uses these CSS properties: .shimmer { position: absolute; z-index: 999; } .gwt-DialogBox { z-index: 1000; } On Oct 27, 5:51 pm, El Mentecato Mayor <[EMAIL PROTECTED]> wrote: > Has GWT solved to the known problem of dis

Popups and dialogs appear below Java applets

2008-10-27 Thread El Mentecato Mayor
Has GWT solved to the known problem of displaying html elements on top of Java applets? GWT already solves the similar problem around ListBoxes, so I would guess a similar solution applies to Java applets. What I'm seeing is that popups (SuggestBox) and dialogs appear behind Java applets (I need

Re: Your opinion sought: Jetty or Tomcat?

2008-10-14 Thread El Mentecato Mayor
I think it is broken in the sense that it does take a lot of time to get the app running when in development mode (and hosted mode), or at least more time that I would like it to. I would welcome Jetty if that improves the performance. I have nothing specific to tomcat so far, so nothing should b

Re: RPC SuggestOracle on high latency connections

2008-09-12 Thread El Mentecato Mayor
Can someone post a sample implementation of RPCSuggestOracle? A client-side SuggestOracle is straight forward per the documentation, but I'm not sure how the new Incubator classes are used together with an RPC request. I have my RPC service working which returns a List, so I just need to know ho