Re: Mouse Over Image

2010-07-22 Thread Craigo
The PopupPanel.showRelativeTo(UIObject) method is handy for this. On Jul 22, 3:10 pm, abhiram wuntakal abhir...@gmail.com wrote: Hi,   I had implemented a very similar functionality, where I had to display a label as soon as there is a mouse-over on the image and where there a mouse-out, the

Re: How to vertically center content inside an HTMLPanel

2010-07-22 Thread Craigo
http://lmgtfy.com/?q=vertical+align+page :-) On Jul 22, 2:01 pm, David Vree david.h.v...@gmail.com wrote: Newbie here -- struggling to get my HTML text and button to be vertically centered within my HTMLPanel.  I am using UI binder and tried applying a style: vertical-align: middle; But

Re: How to vertically center content inside an HTMLPanel

2010-07-22 Thread cokol
make sure the HTMLPanel itself has a maximum extended height of this parent, so set panels height to 100% On 22 Jul., 06:01, David Vree david.h.v...@gmail.com wrote: Newbie here -- struggling to get my HTML text and button to be vertically centered within my HTMLPanel.  I am using UI binder and

Re: Sizing TabLayoutPanel (replacing TabPanel)

2010-07-22 Thread Stefan Bachert
Hi, i recently wrote somewhat similar . TabPanel are using table, the total size is defined by its children. TabLayoutPanel are user position:absolute, the size is defined either explicitly or by its parent. Stefan Bachert http::/gwtworld.de Inquiries for professional GWT support are

Re: remove old javascript file

2010-07-22 Thread Stefan Bachert
Hi, caching is controlled by the container. THere is no general way to configure it. On Jetty you have to extend web.xml On Apache you have to configure some .conf or .htaccess On GAE there is an appconfig Stefan Bachert http::/gwtworld.de Inquiries for professional GWT support are welcome. I

Re: Compiler Bug in 2.1.0.m2

2010-07-22 Thread Björn
Hi Olivier, thanks for your quick response and your workaround. It works! cheers, Björn -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this

Re: GWT app looks ugly in IE6

2010-07-22 Thread Stefan Bachert
Hi, I would not spend the time. IE6 is primary used by companies using old software not willing to upgrade. It is a pain to support IE6 and such customer do not pay for service. Your customers are rather private. You could expect from them to download a modern browser like FF or Chrome. (If not

Re: Can you use GWT with the spring framework (spring mvc)?

2010-07-22 Thread Stefan Bachert
Hi, we had hane this discussion already this year. In general any Spring GUI technique does not make sense with GWT. Even Spring Roo is doing either Spring MVC or GWT. Stefan Bachert http::/gwtworld.de Inquiries for professional GWT support are welcome. I am sorry, I won't do free personal

EclEmma + GwtTestCase + GwtGenerator exception

2010-07-22 Thread Gal Dolber
Hi, I am working on a gwtTestCase that call a gwtGenerator and do something, no matter what. I downloaded and patched eclEmma to work with gwt and it works fine. The problem I have is when I try to test a gwtGenerator failure, the test goes ok, it captures the exception ok, but eclEmma is not

Re: EclEmma + GwtTestCase + GwtGenerator exception

2010-07-22 Thread Gal Dolber
Forgot the example: Under a GWTTestCase.. public void testFailureGenerator() { try { GWT.create(BadInterface.class); } catch (RuntimeException e) { return; } fail(); } 2010/7/22 Gal Dolber gal.dol...@gmail.com Hi, I am working on a gwtTestCase that call a gwtGenerator and do

Re: CSS in UIBinder or separate file?

2010-07-22 Thread Ed
Why (or when) would I put CSS in the UIBinder XML file? Because other people like HTML/CSS experts understand CSS files and not the GWT xml format. -- 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: Needing help, building a Login

2010-07-22 Thread AlexG
Thank you cokol, I think I got, what I needed. Thanks for your help! Greets Alex On 21 Jul., 22:11, cokol eplisc...@googlemail.com wrote: hi, you dont need to care for session ids, unless cookies are disabled, since almost every servlet container (tomcat, appengine,etc) creates a new

Re: Release 0.3 of gwt-platform

2010-07-22 Thread Peter Simun
Phillipe, thank you for your great work. Peter On 21. Júl, 22:50 h., PhilBeaudoin philippe.beaud...@gmail.com wrote: I just wanted to announce that release 0.3 of the gwt-platform MVP framework is now available athttp://gwtplatform.com It sports a number of cool new features including

Re: Needing help, building a Login

2010-07-22 Thread Ladislav Gazo
Hi Alex, maybe you would be interested in integrating security with login on the client and server side. If so you can check acris-security module at - http://acris.googlecode.com/ BR, Laco On 21. Júl, 16:41 h., AlexG alexander.gauss.ax...@googlemail.com wrote: Hi @ all, I want to build a

Opening

2010-07-22 Thread Paul Grenyer
Hi All I've got a bit of a problem opening new tabs. I found the following link: http://brainreaders.blogspot.com/2009/10/open-new-tab-in-gwt.html and from that I've derived: private static native void getURL(String url) /*-{ $wnd.open(url,'target=_blank') }-*/; It works

Re: $_POST is empty when request made using RequestBuilder

2010-07-22 Thread malrawi
Thanks everyone very nice tips and links. Salk31 Cokol, you were right, I didn't need the ?, PHP page wouldn't get the first parameter because of the ? VM, nice article and very smart hack... but it got me wondering whether I will be able to maintain status on the server (using sessions),

Re: Did anybody try Cross site communication?

2010-07-22 Thread George Georgovassilis
There are some libraries which handly cross site RPC, but they all have one or another drawback. You can read on here [1] [1] http://development.lombardi.com/?p=611 On Jul 21, 2:09 am, VM thinker...@gmail.com wrote: Hello GWT Users, I just wanted to check if anybody had success with Cross

Open source study

2010-07-22 Thread Albatros
Hi I'm working on researching open source from a pure economic perspective, and with GWT being a pretty high profile open source project I would like to ask ? questions. I fully understand if you do not want to or do not have time to answer any or all of them Was the decision to make GWT open

(Random can't be used in a static method) ?????

2010-07-22 Thread Shawn Brown
is this as expected (Random can't be used in a static method) ? public static void test() { // static method Log.info(random int +Random.nextInt(6)); } -throws a java.lang.UnsatisfiedLinkError: com.google.gwt.user.client.Random.nextInt(I)I BUT ...

Re: (Random can't be used in a static method) ?????

2010-07-22 Thread Shawn Brown
Actually if com.google.gwt.user.client.Random is in a static method called by a static method it fails. com.google.gwt.user.client.Random in a static method called by a non-static method works fine. Seems a little flakey to me but ... I'm probably just not as smart as you! Shawn -- You

Re: Opening

2010-07-22 Thread cokol
hi, try it as follows: private static native void getURL(String url) /*-{ $wnd.open('' + url,'target=_blank') }-*/; On 22 Jul., 11:21, Paul Grenyer paul.gren...@gmail.com wrote: Hi All I've got a bit of a problem opening new tabs. I found the following link:

Re: Mouse Over Image

2010-07-22 Thread George Georgovassilis
You might do it with some CSS provided that you are not targeting IE6. 1. Make a div with fixed dimensions 2. Put the label and the image into the div 3. The initial style for the label should be absolute positioning and hidden. You can play with margins to place the label anywhere ove rthe image

Re: Opening

2010-07-22 Thread Paul Grenyer
Hi On Thu, Jul 22, 2010 at 11:57 AM, cokol eplisc...@googlemail.com wrote: hi, try it as follows: private static native void getURL(String url)    /*-{        $wnd.open('' + url,'target=_blank')    }-*/; Thanks! Unfortunately that didn't work either. Just to see what happens, I tried:

Re: Opening

2010-07-22 Thread cokol
you dont need to target a blank window, since anyway its a new one by default, so just skip the second parameter to $wnd.open() or if you still want to then do like $wnd.open(url,'_blank'); br, On 22 Jul., 13:30, Paul Grenyer paul.gren...@gmail.com wrote: Hi On Thu, Jul 22, 2010 at 11:57

Re: Opening

2010-07-22 Thread Paul Robinson
No need for jsni. Try: Window.open(http://www.itv-f1.com/;, _blank, ); HTH Paul Paul Grenyer wrote: Hi On Thu, Jul 22, 2010 at 11:57 AM, cokol eplisc...@googlemail.com wrote: hi, try it as follows: private static native void getURL(String url) /*-{ $wnd.open('' +

Re: Opening

2010-07-22 Thread Paul Grenyer
Hi On Thu, Jul 22, 2010 at 12:51 PM, Paul Robinson ukcue...@gmail.com wrote: No need for jsni. Try: Window.open(http://www.itv-f1.com/;, _blank, ); I had that before, it didn't give me tabbed browsing in IE. -- Thanks Paul Paul Grenyer e: paul.gren...@gmail.com b: paulgrenyer.blogspot.com

Re: Tomcat not finding ServiceImpl

2010-07-22 Thread John
(Sorry for the late reply - I wasn't getting notified of responses in my email ...) What it ended up being is that I had forgotten to uncheck the Use Google App Engine box :/ A little annoying to have to switch back and forth when I'm debugging to when I'm testing it deployed, but at least it

Re: (Random can't be used in a static method) ?????

2010-07-22 Thread cokol
watch out! you cannot make new Random() on GWT's type otherwise your IDE would pull in Javas implementation, so only Random.getNext() works make sure your Random is imported from com.google rather than java.util On 22 Jul., 12:50, Shawn Brown big.coffee.lo...@gmail.com wrote:  Actually if

Re: Opening

2010-07-22 Thread Thomas Broyer
On 22 juil, 11:21, Paul Grenyer paul.gren...@gmail.com wrote: Hi All I've got a bit of a problem opening new tabs. I found the following link: http://brainreaders.blogspot.com/2009/10/open-new-tab-in-gwt.html and from that I've derived:     private static native void getURL(String url)

Re: Google's Way ! reinventing the wheel

2010-07-22 Thread ChrisK
Java does support plural forms of some kind in the ChoiceFormat method which combined with MessageFormat can be used in conjunction with resource bundles. While the GWT way is similar it's not the same. Making it the same would add benefit for any developers creating other Java based application:

Re: How to fix this GAE-related problem: Must be called from a blob upload callback request.

2010-07-22 Thread Alexander Orlov
This is the file http://code.google.com/p/loxal/source/browse/src/loxal/lox/service/meta/server/BlobUploadSvcImpl.scala?repo=lox that throws this exception. I've tried it with its doGet and doPost methods — same result. On Jul 21, 5:48 pm, Alexander Orlov alexander.or...@loxal.net wrote: I'm

DevMode slower than GwtShell?

2010-07-22 Thread Björn
Hi, we are currently upgrading from 1.5.3 to 2.1.m2. With 1.5.3 (GwtShell) our application started in 6 minutes time. With DevMode it needs more than 8 minutes. 6 minutes to start the GWT Development Mode window and 2 minutes to initialy start the browser. Is this plausible? Has anyone made the

Re: How to vertically center content inside an HTMLPanel

2010-07-22 Thread David Vree
On Jul 22, 2:39 am, cokol eplisc...@googlemail.com wrote: make sure the HTMLPanel itself has a maximum extended height of this parent, so set panels height to 100% I set the height to 100% but it didn't move the button. For now, I've just set the top margin and right margin to the correct

Does GWT have a status bar?

2010-07-22 Thread David Vree
I'm looking for something exactly like the Ext GWT toolbar status: http://www.sencha.com/examples/pages/toolbar/statustoolbar.html But am trying (if I can) to avoid the inclusion of a third party library (and the additional learning, size, and instability). -- You received this message because

best practice to use css in uibinder?

2010-07-22 Thread asianCoolz
may i know what is the best practice for using css in UIBinder? should i includeui:style src=MyUi.css / insider every MyClass.ui.xml ? -- 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: CSS in UIBinder or separate file?

2010-07-22 Thread asianCoolz
what is the conclusion ? use unique ui:style in each ui.xml file? dont use global css file? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this

Re: best practice to use css in uibinder?

2010-07-22 Thread asianCoolz
if i put ui:style src=MyUi.css / in every class.ui.xml . does the mean the browser will repeatably make request to server to grab the same css? or it reuse the same css file? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

Re: Does GWT have a status bar?

2010-07-22 Thread cokol
isnt it simply a Composite of a panel and a lable? :-) i mean it would take you half an hour at most to write your own with some smart API, or better yet, take extGWTs api for it On 22 Jul., 16:36, David Vree david.h.v...@gmail.com wrote: I'm looking for something exactly like the Ext GWT

GWT Plugin for IE

2010-07-22 Thread Joyce
Hi, I am a software engineer and am currently new to GWT. I would like to ask if it is necessary to install Missing Pluging for Web browser in order to view GWT applications? What if my client does not have internet access to install plugin? Btw if it is just javascript why do you need to

How to catch ctrl +/- in GWT

2010-07-22 Thread Mark Donszelmann
Hi I created a page using GWT, which resizes properly. I catch the resize event and manage to resize all images in the page as required. However, if one does ctrl-plus or ctrl-minus (or command-plus, command-minus) to zoom into / out of the page, I would like to catch that event to be able to

Re: Did anybody try Cross site communication?

2010-07-22 Thread Uberto Barbini
we're doing it putting a servlet on server side that behave as a proxy. So gwt client call servletproxy with a parameter with the wanted url and the servlet reply with the content Uberto On Thu, Jul 22, 2010 at 12:02 PM, George Georgovassilis g.georgovassi...@gmail.com wrote: There are some

1.7 - 2.0 upgrade docs

2010-07-22 Thread Neil
Hi, does anyone have a link to the docs for upgrading from gwt 1.7 to 2.0? The one at http://code.google.com/webtoolkit/doc/latest/ReleaseNotes.html is already for 2.0 - 2.1 M2. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

Running HTML

2010-07-22 Thread pongad
I'm not sure if there is already an answer to this somewhere, but since I can't find one, I shall take the liberty to post this question. I am new to all this, so sorry in advance for a newbie question :) I don't entirely understand the mechanics of running a GWT webapp. My guess is that

GWT app development in teams

2010-07-22 Thread Ben
Hello all I'm looking for best practices in developing GWT apps. Let's assume we are 3-5 programmers working on a fairly big GWT app. I could not find any straightforward information on this. Maybe because it's absolutely clear for most developers or maybe there are just too many possible

Re: Can you use GWT with the spring framework (spring mvc)?

2010-07-22 Thread Ashton Thomas
Yes, Google has recently partnered with VMWare/Spring and the Roo project. http://www.springsource.org/roo Roo will get you up and running with a Spring backend and GWT frontend in no time I'm trying to learn everything myself:

Intercepting a paste from the clipboard

2010-07-22 Thread Catorcio
I have a TextArea widget and I need to be able to discern when the user pastes text in it from the clipboard (instead of typing at the keyboard). I would like to be able to block the paste action, get the text to be pasted and simulate that the user has typed at the keyboard that text (i.e. I

Restlet

2010-07-22 Thread michael
Hello. Right now I am setting up a new project, that uses GWT at the client side. This time I have to use rest for the server communication. Shouldn't be any problem doing that with GWT. But I looked around and found restlet, offered from http://www.restlet.org. Does someone have experience with

Re: Does GWT have a status bar?

2010-07-22 Thread David Vree
Its just that I am new to all this! But taking your lead, I have created a horizontal panel, added left or right justified cells and within the cell added a label. So far so good, but how did they achieve the 3d box effect around their label? On Jul 22, 10:48 am, cokol eplisc...@googlemail.com

Re: Did anybody try Cross site communication?

2010-07-22 Thread rajendra dasari
Yah I am working on cross site communication using JSON, we are passing response from server using JSON response, and getting from client as JSON objects. -- Raj. On Wed, Jul 21, 2010 at 5:39 AM, VM thinker...@gmail.com wrote: Hello GWT Users, I just wanted to check if anybody had success

Re: GWT Plugin for IE

2010-07-22 Thread Isaac Truett
Joyce, You only need the GWT developer plugin for development. Nothing in GWT requires an end-user to install a plugin. - Isaac On Thu, Jul 22, 2010 at 3:35 AM, Joyce joyc...@gmail.com wrote: Hi, I am a software engineer and am currently new to GWT. I would like to ask if it is necessary

Re: Intercepting a paste from the clipboard

2010-07-22 Thread Jim Douglas
You can't do this in any reliable cross-browser way. The following code works only in IE and WebKit. It fails in Firefox because there's no reliable way to retrieve the pasted text in Firefox (there are unreliable ways involving the Mozilla security manager). It fails in Opera and Mobile Safari

Re: CSS in UIBinder or separate file?

2010-07-22 Thread Sekhar
Yes, separate out the common stuff into a CSS (or more, as necessary) and put as much of the specific CSS as possible into the XML file. Below is an example that shows this setup and its power. Note that each UiBinder XML treats the definitions in the common file (color1 and .roundCorners in this

Re: GWT app development in teams

2010-07-22 Thread Uberto Barbini
Hi Ben, we're working in 10 people on a big gwt project. Some people work in office, some remotely. I think the problem in your scenario is My situation: I'm developing and debugging locally, then deploy the .war file manually on my tomcat server. everything should be done automatically

Serializable objects lost during Async call

2010-07-22 Thread Kevin (Yau) Leung
I'm using GWT 2.0.3 and have encountered a problem during async rpc. I have a serializable class containing a number of other serializable class. E.g. class Parent implements java.io.Serializable { private ChildA childA; private ChildB childB; private ChildC childC; private ChildD

problem accessing one composite from another - Urgent help needed if possible

2010-07-22 Thread dlynch
Hi Everybody, I am learning GWT just and am really stuck on a problem. I have created a new composite which contains several panels. In some of the panels I have other seperate composites of which one is a search which contains a TextBox and a Button. So basically i have a mainInterface.java

Re: Serializable objects lost during Async call

2010-07-22 Thread cokol
hi.actually impossible.for me it worked out.could u provide more information on the subclasses. or the fields are marked transient or such. On Jul 22, 6:00 pm, Kevin (Yau) Leung kvle...@gmail.com wrote: I'm using GWT 2.0.3 and have encountered a problem during async rpc. I have a serializable

Re: problem accessing one composite from another - Urgent help needed if possible

2010-07-22 Thread cokol
hi.from architectonical perspective,the response IS A part of your wrapping composite therefore ur maininterface should also manage it.just put the response widget inside On Jul 22, 6:20 pm, dlynch cra...@crayonbox.co.uk wrote: Hi Everybody, I am learning GWT just and am really stuck on a

Re: GWT app development in teams

2010-07-22 Thread PhilBeaudoin
If it's a new project and you're not tied to a specific backend, you could could consider deploying on AppEngine. This has been very efficient for our team where every developer works remotely. AppEngine offers a standardized built-in environment right in eclipse so everybody can test locally with

Re: CSS in UIBinder or separate file?

2010-07-22 Thread PhilBeaudoin
Just to complement the answers here... I've found the new spriting mechanism of GWT (@sprite) to be really simple and useful. Unfortunately, it doesn't work for UiBinder-embedded CSS styles. Therefore, I rely on an external CssResource for all my styles that need spriting. On Jul 22, 8:43 am,

Re: GWT app looks ugly in IE6

2010-07-22 Thread RPB
To any who might be interested, these statistics on browser usage are normally kept quite up to date: http://www.w3schools.com/browsers/browsers_stats.asp On Jul 22, 8:32 am, Stefan Bachert stefanbach...@yahoo.de wrote: Hi, I would not spend the time. IE6 is primary used by companies using

Gradients in css3

2010-07-22 Thread Jyaif
Hi, Is it possible to add gradients using css in GWT? I have tried adding gradient with css, with java, directly into the UIBinder xml, but nothing works. I know my browser supports it because I can fill a simple static div. -- You received this message because you are subscribed to the Google

Re: How to catch ctrl +/- in GWT

2010-07-22 Thread cokol
u just register the keypressedhandler on the body element and when fired check if control key is pressed and corresponding characters are pressed. Actually its always better to scale images in percentage ratgherr than giving absolute sizes then this job is done by browser automativally On Jul

Re: GWT app looks ugly in IE6

2010-07-22 Thread Magnus
Hi, sorry for repeating: I thought that the promise of GWT was that one never ever has to deal with such problems anymore? Why are we discussing about wether to spent time in supporting IE6 while the GWT compiler should do this? Magnus -- You received this message because you are subscribed

Re: GWT app looks ugly in IE6

2010-07-22 Thread Isaac Truett
GWT doesn't promise to make your application look the same on all browsers. It does try its very best to make sure that the JS it produces functions the same across browsers, and doesn't leave any nasty side effects, leak memory, or anything like that. There may be some cases where GWT will

Re: GWT app looks ugly in IE6

2010-07-22 Thread Christian Goudreau
Let's drop IE6 and IE7 support, I think it's time anyway for that. On Thu, Jul 22, 2010 at 1:42 PM, Isaac Truett itru...@gmail.com wrote: GWT doesn't promise to make your application look the same on all browsers. It does try its very best to make sure that the JS it produces functions the

Re: Caution: SmartGwt loadup size is big

2010-07-22 Thread Nirmal
Any experiences on performance/download size with GWT Mosaic?? Regards, Nirmal On Jul 22, 9:15 am, Shawn Brown big.coffee.lo...@gmail.com wrote: Is GXT any different in this aspect? Does it support code-splitting? (Unless it is only an alias of one of those you mentioned.) Yes it does.

Re: GWT app looks ugly in IE6

2010-07-22 Thread charlie
Agreed. It's been the bane of web developers existence for far too long. On Thu, Jul 22, 2010 at 12:44 PM, Christian Goudreau goudreau.christ...@gmail.com wrote: Let's drop IE6 and IE7 support, I think it's time anyway for that. On Thu, Jul 22, 2010 at 1:42 PM, Isaac Truett

Re: Restlet

2010-07-22 Thread emurmur
I've been using Restlet starting at 1.x and now at 2.0 in my appengine project, which has been in production for about 6 months. Much of my UI is written using Adobe Flex. I recently attempted to use GWT for part of the UI and had some problems, but there is a work-around and both the GWT and

Re: GWT app looks ugly in IE6

2010-07-22 Thread Brett Thomas
I think it looks classy to display a note for IE6 users that says something along the lines of unfortunately our website no longer supports IE6, click here to learn how to upgrade I think plenty of people have no idea what browser version they are using. They may know the difference between IE

Re: support F5 to load current page

2010-07-22 Thread Ahmed Shoeib
what do you mean by showing another page than the expected one how to know this this is the problem how to know that the user press refresh button or F5 ? On Jul 22, 1:49 am, Thomas Broyer t.bro...@gmail.com wrote: On Jul 21, 7:27 pm, Ahmed Shoeib ahmedelsayed.sho...@gmail.com wrote:

Best Validation Framework

2010-07-22 Thread Nirmal
Hi, I am analysing various Validation Framework for use with GWT and would like to collect opinions of the group. Validation Requirements: 1) Individual fields values (value in textbox should be alphanumeric or from specified list) 2) Group validation on values in multiple fields (two fields

Re: Focus problems moving from RootPanel to RootLayoutPanel

2010-07-22 Thread Thad
Thanks. That was exactly the cure--do hide/show on the RootLayoutPanel vs the widget inside. On Jul 21, 6:54 pm, Thomas Broyer t.bro...@gmail.com wrote: On Jul 21, 8:32 pm, Thad thad.humphr...@gmail.com wrote: I'm testing moving my application from a RootPanel to RootLayoutPanel.  Given

Re: DevMode slower than GwtShell?

2010-07-22 Thread Jason Thrasher
Hi Bjorn, Yikes, no, we haven't had the same experience. You might look to how a Roo project is configuring everything, as I found some good hints in there while playing with Roo that I'm now using in our main build for our GWT components. Those Roo apps start right up in dev mode, and while

Re: GWT app looks ugly in IE6

2010-07-22 Thread lineman78
GWT does not promise that all renderings look the same, but instead gives you the tools to do so efficiently. For example, IE does not render borders around empty cells in a table, but FF and webkit do. It is up to you to set the CSS to tell IE to also render them. The IE widgets do promise to

Re: Gradients in css3

2010-07-22 Thread lineman78
You have to escape the beginning dash. Here is from my cssResource: @external gwt-Button, gwt-PushButton, gwt-ToggleButton; .gwt-Button, .gwt-PushButton, .gwt-ToggleButton { \-moz-border-radius: 3px; \-webkit-border-radius: 3px; } On Jul 22, 11:17 am, Jyaif jfgeye...@gmail.com

Places, Activities, and bookmarking History

2010-07-22 Thread Jason Thrasher
Digging around in 2.1.M2's Places and Activities, I'd like to start implementing some bookmarking features based on History tokens. Where can I go to learn about GWT's roadmap for this, and possibly some hints at sample code? (maybe somewhere in the bikeshed that I haven't looked?) thanks,

Re: Best Validation Framework

2010-07-22 Thread Thomas Broyer
On 22 juil, 20:19, Nirmal nirmaljpa...@gmail.com wrote: Hi, I am analysing various Validation Framework for use with GWT and would like to collect opinions of the group. Validation Requirements: 1) Individual fields values (value in textbox should be alphanumeric or from specified list)

Re: support F5 to load current page

2010-07-22 Thread Thomas Broyer
On 22 juil, 20:05, Ahmed Shoeib ahmedelsayed.sho...@gmail.com wrote: what do you mean by showing another page than the expected one I hope the same as when you originally said now after pressing the f5 button it return to the first page in my projects. how to know this this is the problem

Creating a separate GWT servlet page

2010-07-22 Thread Irving Ruan
Hello, Right now, I have my main web app displaying just fine on the page when I run it through Eclipse GWT plugin. When I navigate to http://127.0.0.1:/WebApp.html?gwt.codesvr=127.0.0.1:9997 I see my main page. Now, I want to add an admin page where special users can edit stuff, which

Re: Regarding google visualization(Annotated Timeline)

2010-07-22 Thread gourineni rakesh
Hi, Thank You Nicky.I am new to Visualization.Can u plz tell me how to set the m_vpMainPanel width and height ... Regards, Rakesh. On Fri, Jul 16, 2010 at 2:58 PM, Nicky karajd...@gmail.com wrote: The error says it all. set m_vpMainPanel width and height explicitly.

Re: CSS in UIBinder or separate file?

2010-07-22 Thread Thomas Broyer
On 22 juil, 18:48, PhilBeaudoin philippe.beaud...@gmail.com wrote: Just to complement the answers here... I've found the new spriting mechanism of GWT (@sprite) to be really simple and useful. Unfortunately, it doesn't work for UiBinder-embedded CSS styles. Therefore, I rely on an external

Re: GWT app looks ugly in IE6

2010-07-22 Thread dane.molotok
I agree with you, but there's still the issue of when your application has to be consumable by an enterprise, where the end user does not have permission to install an alternative browser, upgrade the one they have, or install the Google Chrome Frame plugin (+1). On Jul 22, 1:03 pm, Brett Thomas

Re: GinInjection

2010-07-22 Thread SD
Thanks for the info! On Jul 21, 6:40 pm, Thomas Broyer t.bro...@gmail.com wrote: On Jul 22, 3:07 am, SD smashd...@gmail.com wrote: Is this correct? So, if a class like AView is instantiated using UIBinder when doing a createAndBind on an xml file that has a reference to AView, and Aview

Re: CSS in UIBinder or separate file?

2010-07-22 Thread PhilBeaudoin
Wow! That's good to know Thomas, thanks... I'll bring things over to my UiBinder file. On Jul 22, 12:34 pm, Thomas Broyer t.bro...@gmail.com wrote: On 22 juil, 18:48, PhilBeaudoin philippe.beaud...@gmail.com wrote: Just to complement the answers here... I've found the new spriting mechanism

Re: GWT app development in teams

2010-07-22 Thread Flemming Boller
Hi Phil What intgr. test tools are you evaluating? I am evaluating selenium. I like selenium IDE, but I think it is a little fragile. /FLemming On Thu, Jul 22, 2010 at 6:44 PM, PhilBeaudoin philippe.beaud...@gmail.comwrote: If it's a new project and you're not tied to a specific backend,

Re: Release 0.3 of gwt-platform

2010-07-22 Thread cretz
I love this library and am currently using it in a large scale application I am writing. Keep up the good work (now off to rename all my imports :-) On Jul 22, 3:28 am, Peter Simun si...@seges.sk wrote: Phillipe, thank you for your great work. Peter On 21. Júl, 22:50 h., PhilBeaudoin

Re: Internet Explorer load standard.css after my CssResource

2010-07-22 Thread PhilBeaudoin
Thanks Christian, excellent idea! Philippe On Jul 21, 3:49 pm, Christian Goudreau goudreau.christ...@gmail.com wrote: Use stylePrimaryName ex: .mesy-MainMenu {        color: #424242;        font-size: 13px;        cursor: pointer; } @external gwt-MenuItem; .mesy-MainMenu

Re: CSS in UIBinder or separate file?

2010-07-22 Thread Thomas Broyer
On 22 juil, 17:43, Sekhar sek...@allurefx.com wrote: Yes, separate out the common stuff into a CSS (or more, as necessary) and put as much of the specific CSS as possible into the XML file. Below is an example that shows this setup and its power. Note that each UiBinder XML treats the

Re: GWT app development in teams

2010-07-22 Thread Thomas Broyer
On 22 juil, 17:59, Uberto Barbini ube...@ubiland.net wrote: Hi Ben, we're working in 10 people on a big gwt project. Some people work in office, some remotely. I think the problem in your scenario is My situation: I'm developing and debugging locally, then deploy the .war file manually

Re: GWT and maven

2010-07-22 Thread dane.molotok
Yeah someone who knows more than I do needs to get the gwt-maven- plugin site up to date (or heck, release 1.3). It's a little misleading, the timestamp is recent but most of the information applies to pre-GWT 2.0. On Jul 21, 5:46 pm, Thomas Broyer t.bro...@gmail.com wrote: On Jul 21, 6:19 pm,

Re: Sizing TabLayoutPanel (replacing TabPanel)

2010-07-22 Thread Thad
Sounds like I need to hang on to the 2.0.4 source tree against the day when TabPanel may disappear and I need to recreate it in my own library of widgets. Fixed sizes will not do for me at all. Nor do I like setting dialog or other widget sizes based on some percentage of the browser window.

Re: HTML5 DnD mouse events - Drop not fired, but others are

2010-07-22 Thread hbf
Harry, Did you have any success with this? I am struggling with the same. Best, Kaspar On Jul 21, 2:55 am, Harry harrylepot...@gmail.com wrote: Hey All, I've been trying to implement support for HTML5 drag 'n' drop events in GWT 2.0.3. Thus far i've managed to override the default DOMImpl

Re: Gradients in css3

2010-07-22 Thread Gal Dolber
thats border radious... for gradients you need to use literal() See http://code.google.com/p/google-web-toolkit/issues/detail?id=4877can=4colspec=ID%20Type%20Status%20Owner%20Milestone%20Summary%20Stars 2010/7/22 lineman78 linema...@gmail.com You have to escape the beginning dash. Here is from

Re: CSS in UIBinder or separate file?

2010-07-22 Thread Sekhar
Good point. I'm not sure though why Google does this since there's no benefit (as far as I can see anyway). If you define a class *inside* the style block, it makes sense to create a new class for it, but why do it if it's being imported? I've submitted a request on this, let's see what they say.

Re: GWT app looks ugly in IE6

2010-07-22 Thread Mateo
Ahem... www dot makeuseof dot com/tech-fun/here-is-why-web-developers- hate-ie6/ Agreed with Brett. Or just do like Google did: googlewavedev dot blogspot dot com/2009/09/google-wave-in-internet- explorer.html ...They can use IE, but they've been warned. Then you really don't have to worry about

Add HTML tags around GWT widgets

2010-07-22 Thread Thomas Dvornik
Hello, I'm creating an application that parses XML. After parsing, the corresponding widgets gets created and added to the page. To provide more customization, a user can include XHTML tags for formatting. These tags should go directly to the page in the spot they were specified. For example,

Re: Add HTML tags around GWT widgets

2010-07-22 Thread Gal Dolber
in uiBinder: g:HTMLPanel this is html divg:LabelAnd here is a widget/g:Label/div /g:HTMLPanel 2010/7/22 Thomas Dvornik amp...@gmail.com Hello, I'm creating an application that parses XML. After parsing, the corresponding widgets gets created and added to the page. To provide more

Re: GWT app looks ugly in IE6

2010-07-22 Thread Magnus
Hi Brett, ok, but BTW: How can one do this, i. e. determine the browser version with GWT? Magnus On Jul 22, 8:03 pm, Brett Thomas brettptho...@gmail.com wrote: I think it looks classy to display a note for IE6 users that says something along the lines of unfortunately our website no longer

Re: GWT app looks ugly in IE6

2010-07-22 Thread Magnus
Hi Lineman! Make sure you specifically set cellpadding and cellspacing to 0 (IE assumes non-zero for one of these, don't remember which). I already found out something: First, I only set the margin/padding values to 0 in the Java code, wich worked on browsers other than IE6. Then, I *also* set

Re: GWT app looks ugly in IE6

2010-07-22 Thread Christian Goudreau
Do it with old natural ways in the html host file. Cheers On Thu, Jul 22, 2010 at 10:30 PM, Magnus alpineblas...@googlemail.comwrote: Hi Lineman! Make sure you specifically set cellpadding and cellspacing to 0 (IE assumes non-zero for one of these, don't remember which). I already found

  1   2   >