Re: Abridged summary of google-web-toolkit@googlegroups.com - 56 Messages in 24 Topics

2012-01-04 Thread Ian Bambury
Can't someone ban this git? 2012/1/4 xavier.iva...@borealinformatique.com NOUVEAU - BORE@L INFORMATIQUE INTEGRE JPA CONSULTANTS Afin de mieux vous servir, nos deux sociétés ont décidé de réunir leurs compétences et leur professionnalisme sous le nom de JPA CONSULTANTS SA . Par ce

Re: gwt

2011-12-31 Thread Ian Bambury
at 4:09 AM, Ian Bambury ianbamb...@gmail.com wrote: textbox.setFocus(true); On 30 December 2011 09:49, Ed Bras post2edb...@gmail.com wrote: For any widget element: /** * Sets the focus state of the element. * @param focused the new focus state */ public native void setFocus(Element

Re: Cannot install Eclipse GWT (and other Google)-plug-ins

2011-12-31 Thread Ian Bambury
What version of Eclipse are you using? As I said, the only one that would work for me was the Java EE. On 31 December 2011 14:27, Thad thad.humphr...@gmail.com wrote: I have Oracle's JDK 1.6.0_29 installed on Windows 7. I've installed Eclipse 3.7. The ONLY portion from the link below that

Re: Something other than a Java object was returned from JSNI method

2011-12-31 Thread Ian Bambury
Hi Thomas, thanks for the welcome back! It appears that there are two issues for me, not one - the one you kindly gave me the link to (I had actually looked at it, but didn't get any further than the first entry because the version was so old) - and the other is the random history

Re: gwt

2011-12-30 Thread Ian Bambury
textbox.setFocus(true); On 30 December 2011 09:49, Ed Bras post2edb...@gmail.com wrote: For any widget element: /** * Sets the focus state of the element. * @param focused the new focus state */ public native void setFocus(Element elem, boolean focused) /*-{ try { if (focused)

Re: Cannot install Eclipse GWT (and other Google)-plug-ins

2011-12-30 Thread Ian Bambury
Eventually I got it working by installing the 'Indigo Eclipse IDE for Java EE Developers' version. All of the other versions I tried gave me the problem you have, and none of the 'solutions' I found on the web worked (e.g. install something before something else, uninstall something and reinstall)

Something other than a Java object was returned from JSNI method

2011-12-30 Thread Ian Bambury
I keep getting errors like this (assert errors), seemingly at random. I haven't done a lot of testing, but it seems to be only in Chrome (latest version) when running in OOPHM. There are different versions (e.g. go an int when expecting void etc). I don't *think* it's me because I can leave the

Re: Attn::Unix Administrator Requirement in Framingham, MA::Please respond back at di...@abacuscs.com::

2011-01-20 Thread Ian Bambury
@ di...@abacuscs.com Get stuffed @ google-web-toolkit@googlegroups.com Admin Is this really appropriate for this list? On 20 January 2011 20:15, Dipin Sukumaran dipin.j...@gmail.com wrote: Hi, Hope you are doing well. This is Dipin (di...@abacuscs.com ) from Abacus Management consultancy

Re: Link ClickHandler doesn't fire

2011-01-17 Thread Ian Bambury
Something like this? import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; import com.google.gwt.user.client.Window; import com.google.gwt.user.client.ui.HTML; import com.google.gwt.user.client.ui.RootPanel; public class App implements

Re: KeyPressEvent.getCharCode() problem

2011-01-12 Thread Ian Bambury
Any chance you could use international dates rather that US-specific dates? This is an international forum. Thanks (from the rest of the world), it makes referencing stuff easier for the rest of us. Ian Of course, it might just be me having a really bad 12/01/2011 On 12 January 2011 14:57,

Re: Wave

2011-01-09 Thread Ian Bambury
Polite is good, obviously. Asking for help is also, of course, OK. That's what the forum is about. The problem (I think) Andreas has is people making wildly general requests (how do I make something like Wave, tell me the answer) rather than trying to do it for themselves, hitting a block of some

Re: Where do KeyPress Events go?

2011-01-05 Thread Ian Bambury
Greg, is there a reason you can't just set the focus to the button? On 5 January 2011 14:08, jaybose onyeje.b...@gmail.com wrote: OK, what does the button do, at the moment? Do you have your EnterButton's handler call submit() on the form? If so, are you seeing any errors? On Jan 4, 8:53

Re: Where do KeyPress Events go?

2011-01-05 Thread Ian Bambury
fu.addChangeHandler(new ChangeHandler() { @Override public void onChange(ChangeEvent event) { button.setFocus(true); } }); would put the focus on the button - any good? or there's always

Re: Where do KeyPress Events go?

2011-01-05 Thread Ian Bambury
) { Window.alert(Hi!); } }, KeyUpEvent.getType()); On 5 January 2011 15:20, Ian Bambury ianbamb...@gmail.com wrote: fu.addChangeHandler(new ChangeHandler() { @Override public void onChange(ChangeEvent event

Re: JavaScript that I cant resolve!

2010-12-29 Thread Ian Bambury
Some code might help On 29 December 2010 17:44, Ross McKinnon r.mckinno...@googlemail.comwrote: Hi everyone, When i add a new Tab to my tab set I get the error.. ( at least i think thats whats causing it) Uncaught JavaScript exception [missing ) after argument list] I have no idea what

Re: GWT - Thin or Fat Client

2010-12-29 Thread Ian Bambury
Well, you can do the computational stuff on the server, but there is little point if all the data is available (or can be made available) on the client. I think I would go for the term 'obese client' :-) Ian On 29 December 2010 16:05, Ross McKinnon r.mckinno...@googlemail.comwrote: Hi all,

Re: How to remove Space between disclosure panels

2010-12-21 Thread Ian Bambury
I seem to remember that you get this if the disclosure panel is empty - disPanel1 is empty since you add simPanel to it but then add simPanel to disPanel2 Ian On 21 December 2010 10:27, Thomas Broyer t.bro...@gmail.com wrote: VerticalPanel are hardly necessary. Most of the time, a FlowPanel

Re: Multi url GWT app

2010-12-16 Thread Ian Bambury
Just a quick correction: You can have as many entry points as you want. Ian On 16 December 2010 12:52, Jim Majure jim.maj...@gmail.com wrote: Each module can have at most 1 entry point. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: To GWT or Not to GWT

2010-12-16 Thread Ian Bambury
Hi bkardell, I think the simple answer is that in extreme cases such as the one you cite, GWT is not a good fit. The easiest response is to ask you to give it a bit of time and wait until you understand what GWT is before you ask these questions :-) But quickly: * GWT came into being in order

Re: To GWT or Not to GWT

2010-12-16 Thread Ian Bambury
I don't think I said you were stymying the group. Sorry if my reply gave that impression. I don't know how much you know about GWT. I don't even know how much of GWT I don't know. That's the trouble with the unknown. Presumably you don't understand this particular little bit or you wouldn't be

Re: gradient background over multiple panels?

2010-07-05 Thread Ian Bambury
Don't make them something else. Transparent is the default. If you'd Googled *background transparent *and looked at the first result, you could have found that our for yourself. On 5 July 2010 20:22, Magnus alpineblas...@googlemail.com wrote: Hi, thanks! How can I make them transparent?

Re: Button look and feel

2010-06-26 Thread Ian Bambury
You can just add your style sheets after the GWT one in the *.gwt.xml file stylesheet src=my.css/ relative to the /war/ directory These are added after the HTML is processed and therefore overwrite them On 26 June 2010 15:54, andreas horst.andrea...@googlemail.com wrote: On 26 Jun.,

Re: 1 layout - 3 browsers - 3 results?

2010-06-09 Thread Ian Bambury
On 9 June 2010 11:42, Magnus alpineblas...@googlemail.com wrote: You mean I am using the panels in a way they were not made for? Yes. Currently they seem to be aimed at dividing the screen or viewport into different areas, the final (centre) area taking all the remaining space. So this

Re: 1 layout - 3 browsers - 3 results?

2010-06-09 Thread Ian Bambury
On 9 June 2010 11:48, Magnus alpineblas...@googlemail.com wrote: Hi Ian, as longer I think about your advice, the more I like it. You could do interesting things within the resize code, e. g. hide some widgets if there is not enough room... However, before I give it a new try, I need some

Re: 1 layout - 3 browsers - 3 results?

2010-06-09 Thread Ian Bambury
So far, so good. The point is that I add another layout pane to the remaining space. Where is the contradiction? You are trying to float a fixed=width widget in the centre of the screen. It doesn't matter now many times you nest it, it will still work the same way. I didn't actually write

Re: 1 layout - 3 browsers - 3 results?

2010-06-09 Thread Ian Bambury
but you just need to use 'margin:0 auto' What does this style mean? It means that you need to look it up or ask in a forum dedicated to CSS. This forum is for GWT. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: 1 layout - 3 browsers - 3 results?

2010-06-09 Thread Ian Bambury
But how do I get the Resize-Event if I don't subclass an existing layout panel? Window.addResizeHandler(handler); -- 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.

Re: 1 layout - 3 browsers - 3 results?

2010-06-08 Thread Ian Bambury
I think your best bet is to use the onResize and just calculate it. CSS doesn't support centring vertically and I don't think GWT has any magic bullet either. Ian -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: 1 layout - 3 browsers - 3 results?

2010-06-08 Thread Ian Bambury
I'm sure someone will correct me if I'm wrong, but layout panels are more for using the whole of an area of the screen - header, footer, menu on the left, all the rest used for page display, that kind of thing rather than allowing you to float things at various places on the screen. For that, it

Re: 1 layout - 3 browsers - 3 results?

2010-06-08 Thread Ian Bambury
Yep, a typo It sets the top to half way down the screen (top:50%) then moves it back up with the negative margin by half the height of the panel. The effect being that it is centred vertically. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: 1 layout - 3 browsers - 3 results?

2010-06-08 Thread Ian Bambury
I think you might need to use 'position:absolute' and set left and margin-left the same way. It's a long time since I've used it. On 8 June 2010 18:52, Ian Bambury ianbamb...@gmail.com wrote: Yep, a typo It sets the top to half way down the screen (top:50%) then moves it back up

Re: 1 layout - 3 browsers - 3 results?

2010-06-08 Thread Ian Bambury
But what about the differences in the browsers? I thought that GWT manages them? If you add your own CSS, it doesn't go around trying to correct it. It's just what you do in GWT (using the widgets as they are meant to be used - or rather, as Google use them and not just how you want to use

Re: Extending a Widget subclass or Composite?

2010-06-08 Thread Ian Bambury
No. Ask yourself if you want to expose all the top-level widget's methods. If you don't, then use a composite. For example, if you are making a labelled textbox by adding a label and a text box to a VerticalPanel, do you really want the user able to add more things to the VP, to be able to clear

Re: inserting space between form elements

2010-06-01 Thread Ian Bambury
padding-bottom:15px; Ian http://examples.roughian.com On 1 June 2010 18:39, Magnus alpineblas...@googlemail.com wrote: Hi, I use VerticalPanel for my forms. I subsequently and alternating add Labels and TextBoxes: add (Label); add (TextBox); add (Label); add (TextBox); I would like

Re: Menubar - retrieving the selected menu item within the Command object?

2010-05-30 Thread Ian Bambury
The way kozura suggested means that you create a new instance with all the code for every possibility every time (as well as adding extra code for the switch). What have you got against creating a command with just the code that that menu item needs? How does that 'blow up the code in an

HTMLPanel getElementById() - Bug or docs error?

2010-05-05 Thread Ian Bambury
Hi, In the docs for HTMLPanel getElementById() it says: Finds an element within this panel by its id. whereas in practice, the following HTMLPanel panel = new HTMLPanel(div/div); Window.alert(panel.getElementById(id)==null ? Not found:Found); will alert 'Found' if there is an

Re: Again: Flextable problems if used in own Composite-Class

2010-04-29 Thread Ian Bambury
table.getFlexCellFormatter().setColSpan(row,*colspan*, colspan); -- 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: Dynamic layout using the DockLayoutPanel

2010-04-16 Thread Ian Bambury
as a top levellayoutpanelis intended for when you want your app to take up 100% of the browser height, and use internalscrollingvs full browserscrollingto manage overflow. On Apr 7, 6:42 am, Ian Bambury ianbamb...@gmail.com wrote: You could use a flowpanel instead - no need

Re: No ability to scroll

2010-04-16 Thread Ian Bambury
Hint: Some indication of what you are doing would help. :-) Ian http://examples.roughian.com On 16 April 2010 06:18, Jonny jonny.bren...@gmail.com wrote: When my page goes vertically beyond the size of the window I don't have the ability to scroll. The info is being painted (i can select

Re: example of styling vertical panel

2010-04-16 Thread Ian Bambury
Have you got anything in the VP? It would be useful to see the code that doesn't work rather than just guessing from all the things you might be doing wrong. Ian http://examples.roughian.com On 16 April 2010 16:36, Vik vik@gmail.com wrote: Hie I am not using uibinder so tried above

Re: Project Stopped Working (wasn't me, I never touched it!)

2010-04-13 Thread Ian Bambury
...@google.com wrote: Write permissions in the war directory? Files being read (do you have the app running from this directory?) so it can't override them...? kathrin On Mon, Apr 12, 2010 at 7:18 AM, Ian Bambury ianbamb...@gmail.com wrote: I have a bit of a weird problem. A project

Re: -port keeps disappearing

2010-04-13 Thread Ian Bambury
So why doesn't the embedded server do it that way? Still seems like a bug to me. Ian http://examples.roughian.com On 13 April 2010 10:24, Thomas Broyer t.bro...@gmail.com wrote: On Apr 13, 7:19 am, Abdullah Shaikh abdullah.shaik...@gmail.com wrote: OK, but is it not required to specify

Re: Project Stopped Working (wasn't me, I never touched it!)

2010-04-13 Thread Ian Bambury
break unceremoniously. --Sri On 13 April 2010 16:03, Ian Bambury ianbamb...@gmail.com wrote: Hi, Thanks for the response. It's nothing like that - like I say, I can rename the project and it works OK. Rename it back and it stops working. Something somewhere has a setting that stops

Project Stopped Working (wasn't me, I never touched it!)

2010-04-12 Thread Ian Bambury
I have a bit of a weird problem. A project stopped working. When I run it, it fails to create the directory in the /war/ directory for the project (as in rename-to). I wasn't doing anything to the project structure, just coding when it happened. The odd thing is that if I just rename the

-port keeps disappearing

2010-04-12 Thread Ian Bambury
In the Run Configs - Arguments I add -codeServerPort -noserver and -port. If I restart Eclipse, or go to the arguments, or after a while of just running via the run button, the -port switch and port number disappear. Anyone else get this? Any way to make it 'stick'? Is it a bug in the GEP? Ian

Re: Images being padded, would like to have one directly on top of the other

2010-04-11 Thread Ian Bambury
img { display : block; } or img { vertical-align : bottom; } Ian http://examples.roughian.com On 12 April 2010 00:36, Dan dan.a...@googlemail.com wrote: Hi all, I am trying to create a spinner putting an arrow pointing up on top of one pointing down to increment and decrement a

Re: Unable to bring up the hosted mode console for my web application

2010-04-11 Thread Ian Bambury
Right-click the URL, copy, and paste it into a browser (as it says just above the URL). Then you'll have to install a plug-in. Ian http://examples.roughian.com On 12 April 2010 00:58, DanG danielmger...@gmail.com wrote: When I create a GWT project in eclipse with gwt2.0.2 and google app

Re: ***Exciting Java Opportunity in Hampshire***

2010-04-08 Thread Ian Bambury
So has it been decided that people can advertise on this group, then? Ian http://examples.roughian.com On 7 April 2010 14:09, Benny Tech Recruiter ben.j.cul...@googlemail.comwrote: I am currently looking for a Java Developer for the Leader in Sports and Entertainment Integration. My

Re: ***Exciting Java Opportunity in Hampshire***

2010-04-08 Thread Ian Bambury
on a case by case basis. For the most part though, we block these as well. -- Chris On Thu, Apr 8, 2010 at 10:03 AM, Ian Bambury ianbamb...@gmail.com wrote: So has it been decided that people can advertise on this group, then? Ian http://examples.roughian.com On 7 April 2010 14:09, Benny

Re: Dynamic layout using the DockLayoutPanel

2010-04-07 Thread Ian Bambury
You could use a flowpanel instead - no need to complicate things unnecessarily. Ian http://examples.roughian.com On 7 April 2010 11:06, larsbjo lars.bjorkh...@gmail.com wrote: There might be a very simple answer to this in the forum already. If so please have me apologized. I'm making a

Re: value change listener not firing

2010-04-07 Thread Ian Bambury
this does not get fired if i simply tab out from the text box. It fires in the case when i put some char and delete it and then tab out. is it a bug? No. If the value has changes then, when it loses focus, the ValueChange event will fire. If it hasn't changed, then it hasn't changed and so it

Re: Generated CSSResource not injected when using UIBinder

2010-04-07 Thread Ian Bambury
I'm on 2.0.3 and I've been getting this. It works in production mode, but not in dev mode Adding styles in the ui.xml file using - ui:style - addStyleNames or in the java file using - elem.setClassName(classname); - elem.getStyle().setBackgroundColor(blue); doesn't work if you

Re: Change output folder.

2010-04-06 Thread Ian Bambury
Private email sent - if anyone else should want the project, just let me know. Ian http://examples.roughian.com On 6 April 2010 07:27, Dymytry koktebelnig...@gmail.com wrote: Ian, probably sending the project is a very good idea. You can see my email, right? Or tell me a link, if you can

Re: Change output folder.

2010-04-06 Thread Ian Bambury
No, it's in the HTML as a link Ian http://examples.roughian.com On 6 April 2010 15:32, Dymytry koktebelnig...@gmail.com wrote: Ian, thank you. Your example really works! One thing unclear for me: as far as I see your gwt.xml file doesn't contain the line inherits

Re: Change output folder.

2010-04-06 Thread Ian Bambury
You can do it that way (which I did because it was easiest) or you can get them out of the gwt-user.jar (which is where they are from originally. They turn up in the /war/ directory anyway as soon as you fire up dev mode. Ian http://examples.roughian.com On 6 April 2010 16:17, Dymytry

Re: UiBinder - How to refer to /war/MyApplication.css ?

2010-04-06 Thread Ian Bambury
Why do you need to refer to it at all? Ian http://examples.roughian.com On 6 April 2010 18:15, TalkinJive gerald.duques...@gmail.com wrote: Hi Kathrin, Thanx 4 this clue. But I don't find the relative path smart (you may have a lot of ../../..). And what if you refactor the packages ?

Re: Deleting gwt-servlet.jar

2010-04-05 Thread Ian Bambury
Hi Miguel, So I take that there's no way to do what I need, then. Ian 2010/4/5 Miguel Méndez mmen...@google.com Sorry to hear that Paul. @All: In GPE 1.3 we added a way to configure the severity of the errors and warnings reported by GPE. If you navigate to Preferences Errors/Warnings

Re: Change output folder.

2010-04-05 Thread Ian Bambury
Just tried my way, and it works OK in production (that was the whole point, wasn't it?), css and all. I can't see why Thomas's wouldn't either. Ian http://examples.roughian.com On 5 April 2010 09:36, Dymytry koktebelnig...@gmail.com wrote: Ian, Thomas, your ideas seem to be very reasonable,

Re: Change output folder.

2010-04-05 Thread Ian Bambury
What I did is: - Once in the project: - Copy all the standard CSS to the /war/ directory - everything at one level - Access it via a link in the HTML file (i.e. don't do it in the module (*.gwt.xml) file - Change the CSS to get rid of the paths You now have everything for your

Re: Deleting gwt-servlet.jar

2010-04-05 Thread Ian Bambury
April 2010 19:52, Jeff Chimene jchim...@gmail.com wrote: On 04/05/2010 05:36 AM, Ian Bambury wrote: Hi Miguel, So I take that there's no way to do what I need, then. Now I'm confused about what you want... Between the Preferences Errors/Warnings Project structure and SDKs setting

Re: Deleting gwt-servlet.jar

2010-04-04 Thread Ian Bambury
Chimene jchim...@gmail.com wrote: On 04/03/2010 11:24 AM, Ian Bambury wrote: Thanks for thinking about it. I could resort to putting a dummy, empty jar of the same name in there, but it would confuse people (me, probably) it it were ever needed later on. While failing to prevent

Re: entire website in GWT, yes/no ?

2010-04-03 Thread Ian Bambury
/ajaxcrawling) or some other way ?. Can you give details on what are you doing for this or any link which will provide details ? - Abdullah On Fri, Apr 2, 2010 at 9:36 PM, Ian Bambury ianbamb...@gmail.com wrote: Have to disagree with you, Sri. It is simple to create SEO-friendly content-driven web

Deleting gwt-servlet.jar

2010-04-03 Thread Ian Bambury
If you delete the gwt-servlet.jar from the WEB-INF/lib directory because you don't use it, you'll get a warning. Is there any way (other than ignoring the warning) to stop this behaviour? The reason I'd like to do this is that I want to zip up a project and distribute it, but I could do without

Re: 'Stop running this script' message in browsers

2010-04-03 Thread Ian Bambury
Well, don't show it while that is happening, then :-) - show a twirling pizza or a 'Hang On A Minute' message or a progress bar (which is perfectly possible in this situation) Ian http://examples.roughian.com On 3 April 2010 18:41, keyboard_samurai yog...@gmail.com wrote: hi has anyone done

Re: Deleting gwt-servlet.jar

2010-04-03 Thread Ian Bambury
jchim...@gmail.com wrote: On 04/03/2010 10:58 AM, Jeff Chimene wrote: On 04/03/2010 10:33 AM, Ian Bambury wrote: If you delete the gwt-servlet.jar from the WEB-INF/lib directory because you don't use it, you'll get a warning. Nevermind. Didn't work. -- You received this message because

Re: entire website in GWT, yes/no ?

2010-04-02 Thread Ian Bambury
Have to disagree with you, Sri. It is simple to create SEO-friendly content-driven web sites with GWT used just for navigation and history. There is no need for a recompile if content changes. I'm working on one like that right now. If you design it properly, then you don't even need to

Re: Annoying Css Loading behavior

2010-04-02 Thread Ian Bambury
Move your CSS file from the /public/ directory to the /war/ directory. You need to reference it in the module file if you are also using a GWT style. It's a bug in that it appears that /public/ get copied to the output directory after they have been picked up by the app hence the 2 reloads before

Re: Change output folder.

2010-04-02 Thread Ian Bambury
I haven't tried this but... What I'd try is: - Copy all the standard CSS to the /war/ directory - everything at one level - Access it via a link in the HTML file. - Change the CSS to get rid of the paths When you want to upload - take a copy of the /war/ file - Move all the

Re: Change output folder.

2010-04-02 Thread Ian Bambury
Using the public folder means that, until it's fixed, you'll have to refresh twice to get some changes to show up in dev mode (as someone else discovered today). Ian http://examples.roughian.com On 2 April 2010 21:58, Thomas Broyer t.bro...@gmail.com wrote: On 2 avr, 20:30, Ian Bambury

Re: Is client side Javascript code always visible?

2010-03-31 Thread Ian Bambury
No Ian http://examples.roughian.com On 31 March 2010 18:58, NeuroPulse neuropu...@gmail.com wrote: What I mean is, is it compiled like C++ is compiled into a program? On Mar 31, 12:52 pm, Chris Lercher cl_for_mail...@gmx.net wrote: If the JavaScript should be executed in the browser (as

Re: Menu Item and MVP

2010-03-31 Thread Ian Bambury
I've been looking into this for a chapter in the new edition of GWT In Action, here's where I'm at. The Google I/O approach to MVP has never sat well with me because, apart from the fact that the interface can get out of hand, it just seems wrong that the interface specifies that the view must,

Re: Menu Item and MVP

2010-03-31 Thread Ian Bambury
That first button should say Save - It's late here :-) -- 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: Decorator panel outlook problem

2010-03-30 Thread Ian Bambury
It's because the deck part of the tabpanel expands its contents to full width. Always been annoying, that one. The decorated panel then stretches and the cells work out their own widths. This means that the edge cells (decorated bits) stretch to greater than they should be and you see all the

Re: Stop a nuclear disaster

2010-03-30 Thread Ian Bambury
'Our' government? There are far worse things than nuclear accidents. Like off-topic posts, for example. Ian http://examples.roughian.com On 28 March 2010 03:58, deepakredd...@gmail.com wrote: Hi , Our government is churning out one hazardous bill after another. This time it is a bill

Re: Safari Windows takes 100% on example page

2010-03-29 Thread Ian Bambury
It's OK on my machine What versions are you running? Ian http://examples.roughian.com On 29 March 2010 11:44, mably fm2...@mably.com wrote: Hi everybody, Does anyone know why Safari on Windows takes 100% CPU when displaying this simpe example page :

Re: Safari Windows takes 100% on example page

2010-03-29 Thread Ian Bambury
). The page loads fine, but the wheel on the right of the address bar keeps running and CPU goes up to 100%. Some javascript seems to be looping indefinitely, I can pause it in the WebInspector. François On Mon, Mar 29, 2010 at 2:18 PM, Ian Bambury ianbamb...@gmail.com wrote: It's OK on my

Re: Determining Permutation on Server

2010-03-23 Thread Ian Bambury
How would you determine if the current code had been cached on the client or not? Ian http://examples.roughian.com On 23 March 2010 14:41, Nathan Wells nwwe...@gmail.com wrote: Is there a reason you wouldn't want to determine which permutation to send on the server rather than the client?

Re: HorizontalSplitPanel children

2010-03-22 Thread Ian Bambury
You might be better off in a gwt-ext forum Ian http://examples.roughian.com On 22 March 2010 19:39, TM tsm@googlemail.com wrote: BorderLayout -- 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: HorizontalSplitPanel children

2010-03-22 Thread Ian Bambury
this seemed like a fairly straightforward use of HorizontalSplitPanel? BTW Ian, I have found your site very useful lately, thanks! On Mar 22, 8:45 pm, Ian Bambury ianbamb...@gmail.com wrote: You might be better off in a gwt-ext forum Ian http://examples.roughian.com On 22 March

Re: Remove element on host page

2010-02-04 Thread Ian Bambury
Get the body element and set the innerhtml to Ian http://examples.roughian.com On 4 February 2010 12:26, obesga obe...@gmail.com wrote: Hello I have a div element into the host page, just a 'please wait' advice while the gwt code loads. !DOCTYPE html html head !--...-- /head

Re: My IE plugin doesn't work...

2010-01-13 Thread Ian Bambury
In a command window... regsvr32.exe C:\Users\your user name\AppData\Local\Google\Google Web Toolkit\Developer Plugin\IE\oophm.dll Ian http://examples.roughian.com 2010/1/13 Haydar haydarim...@gmail.com Hi, I have a gwt application and I want to see it on internet explorer. But every time I

Re: My IE plugin doesn't work...

2010-01-13 Thread Ian Bambury
, 15:40, Ian Bambury ianbamb...@gmail.com wrote: In a command window... regsvr32.exe C:\Users\your user name\AppData\Local\Google\Google Web Toolkit\Developer Plugin\IE\oophm.dll Ian http://examples.roughian.com 2010/1/13 Haydar haydarim...@gmail.com Hi, I have a gwt

Re: javascript error (invalid Argument)

2010-01-07 Thread Ian Bambury
Hi John, What version of GWT? Ian http://examples.roughian.com 2010/1/7 John V Denley johnvden...@googlemail.com I have just come across the following error when testing my application in IE7, It seems to work fine in Chrome 4.0 and FF 3.5.7 I have seen several other people having the

Re: Why History.newItem() always calls the onModuleLoad?

2009-12-29 Thread Ian Bambury
a) I could be confusing this with something else (it was a long time ago) but AFAIK this is due to IE7 replacing mere bookmarks in the HTML with complete URLs as a security measure (can't remember what this was supposed to fix but it made sense at the time). Therefore there's very little anyone

Re: Can't load the same module twice???

2009-12-29 Thread Ian Bambury
Why would you want to run it twice? What effect are you trying to produce? Ian http://examples.roughian.com 2009/12/30 lineman78 linema...@gmail.com Can someone please tell me if it is possible to load the same module twice. If so, how? I have tried including the script tag twice, which

Re: Possible bug or maybe I don't understand. Window.alert() and onResponseReceived

2009-12-28 Thread Ian Bambury
You have a method with the Window.alert(anything) in it. Where do you call that from? Is that called from the onSuccess method? Or from the sendRequest method? Need to see the relevant code, really, but I suspect you call it after the sendRequest and not via the onSuccess(). Ian

Re: Page back color

2009-12-28 Thread Ian Bambury
='com.google.gwt.user.theme.standard.Standard' / I will have to set it all in my CSS file now... Am I right? Thanks a lot 2009/12/22 Ian Bambury ianbamb...@gmail.com Thing is, if you set the style name to MyStyleName then there is no corresponding .MyStyleName in the GWT styles to override

Re: Can't figure out how to edit a Grid's border

2009-12-28 Thread Ian Bambury
You probably need to set border-collapse:collapse in a css file (or borderCollapse if doing it in the Java) Ian http://examples.roughian.com 2009/12/29 spierce7 spier...@gmail.com Alright, so I'm not sure how to properly figure out how to do this. I've been trying to figure out how to do it

Re: Possible bug or maybe I don't understand. Window.alert() and onResponseReceived

2009-12-27 Thread Ian Bambury
You can't fire off an async request to the server and expect to be able to use the result immediately. Move the code you have after the RPC or RequestBuilder call into the onSuccess method of the callback. Ian http://examples.roughian.com 2009/12/25 MaEcTPo olegik...@gmail.com I have a

Re: GWT 2.0 Panels

2009-12-24 Thread Ian Bambury
listening). Merry Christmas, Mark On Dec 23, 11:27 am, Ian Bambury ianbamb...@gmail.com wrote: You can't use CSS file syntax you have to use DOM style (i.e. 'cssFloat' not 'float'). Try something like: FlowPanel searchPanel = new FlowPanel(); Label leftPanel = new Label

Re: GWT Developer Plugin not working IE8

2009-12-23 Thread Ian Bambury
Have you tried running regsvr32.exe C:\Users\Ian\AppData\Local\Google\Google Web Toolkit\Developer Plugin\IE\oophm.dll replacing Ian with your user name? Ian http://examples.roughian.com 2009/12/23 googelybear googelyb...@gmail.com works for me in 64bit win 2003 server with 32bit IE8. But

Re: GWT Developer Plugin not working IE8

2009-12-23 Thread Ian Bambury
installed into the administrator's app data directory. when I manually copy the oophm.dll file to my home directory and issue the suggested command (regsrv32.exe path to dll) I got it running. It this a bug or a feature? Is there a proper solution for this? thanks! On Dec 23, 5:40 am, Ian

Re: GWT 2.0 Panels

2009-12-23 Thread Ian Bambury
You can't use CSS file syntax you have to use DOM style (i.e. 'cssFloat' not 'float'). Try something like: FlowPanel searchPanel = new FlowPanel(); Label leftPanel = new Label(Left); // Or whatever Label rightPanel = new Label(Right);

Re: Page back color

2009-12-22 Thread Ian Bambury
Do you have some kind of GWT style overriding it? Have a look in your project gwt.xml file. If you are adding css in the html host page, the it will be overridden by that. Ian http://examples.roughian.com 2009/12/22 ALEXEI BARBONI alexeitel...@gmail.com And now I see that nothing that is

Re: Page back color

2009-12-22 Thread Ian Bambury
I put inside body { } in my CSS file. But in my GWT project it does not work... 2009/12/22 Ian Bambury ianbamb...@gmail.com Do you have some kind of GWT style overriding it? Have a look in your project gwt.xml file. If you are adding css in the html host page, the it will be overridden

Re: import wildcards

2009-12-21 Thread Ian Bambury
If you are using Eclipse, you can import with a wildcard, then press CTRL+SHIFT+O (to [O]rganise the imports and give you only what you need) Ian http://examples.roughian.com 2009/12/21 Isaac Truett itru...@gmail.com No, it doesn't change the compiler output. Wildcard imports are considered

Re: begin with GWT

2009-12-19 Thread Ian Bambury
A GWT application is a web application. So that's easy :-) Any time you open a new tab in a browser, or a tab in another browser, you get a new copy of the application. This new copy has no connection with any other copy that is running (unless you design it, say, to use cookies for some reason

Re: IE Development plugin not working in 64-bit vista.

2009-12-15 Thread Ian Bambury
It doesn't work in 32-bit for me. First mentioned (AFAIK) 15th Oct http://groups.google.com/group/google-web-toolkit/browse_thread/thread/5315a07a0d452943 http://groups.google.com/group/google-web-toolkit/browse_thread/thread/5315a07a0d452943Then again in this thread on the 24th Oct

Re: IE Development plugin not working in 64-bit vista.

2009-12-15 Thread Ian Bambury
/df787a10ecb58bf1 : http://groups.google.com/group/google-web-toolkit/browse_thread/thread/dc78259de32b4e9c/df787a10ecb58bf1 - Chris On Tue, Dec 15, 2009 at 10:43 AM, Ian Bambury ianbamb...@gmail.comwrote: It doesn't work in 32-bit for me. First mentioned (AFAIK) 15th Oct http

Re: Timer in GWT?

2009-12-14 Thread Ian Bambury
Use the GWT timer Ian http://examples.roughian.com 2009/12/14 Dennis Madsen den...@demaweb.dk I'm trying to have a Java Timer in my EntryPoint: Timer timer = new Timer(); timer.schedule( new TimerTask() { public

  1   2   3   4   5   6   7   8   >