Re: RadioButton exception on create in IE9

2011-06-21 Thread Benju
I also have this problem with GWT 2.3.0 and creating buttons. On May 13, 7:13 am, piXi slop...@gmail.com wrote: Helow, First my develop enviroment : Windows 7 x64 Netbeans 7.0 ( tried also 6.9.1) Gwt4nb 2.10 GWT2.2.0 today I have upgraded my html to HTML5 and have encountered this

Dev mode in ie8/vista32 - always see Development Mode requires the Google Web Toolkit Developer Plugin

2011-04-29 Thread Benju
When I try to use dev mode on my machien with ie8/vista32 I continually see Development Mode requires the Google Web Toolkit Developer Plugin (the download plugin option). I was prompted once to allow addon to run via the security bar but no longer and nothing loads. How do I troubleshoot this?

Re: Dev mode in ie8/vista32 - always see Development Mode requires the Google Web Toolkit Developer Plugin

2011-04-29 Thread Benju
FYI I have a related stack overflow question here... http://stackoverflow.com/questions/5786312/troublshooting-guide-for-gwt-plugin On Apr 29, 11:39 am, Benju b...@fastcastmedia.com wrote: When I try to use dev mode on my machien with ie8/vista32 I continually see Development Mode requires

Re: chrome - prompting me to install gwt plugin but already installed

2011-01-27 Thread Benju
Craig's fix worked for me to on Windows 7 x64. On Jan 27, 12:49 am, jd jdpatter...@gmail.com wrote: Thanks Craig! Fixed it for me On Jan 27, 9:28 am, Craig Mitchell craig...@gmail.com wrote: Downgrading theplugingets it working again: 1:  Uninstall the currentplugin(Tools -

Re: Does SimplePager have to be subclassed in order for the last page button to work?

2010-12-08 Thread Benju
Try this... SimplePager pager = new SimplePager(SimplePager.TextLocation.RIGHT, GWT.SimplePager.Resourcescreate(SimplePager.Resources.class), false, 0, true); On Nov 3, 5:48 pm, Jeff Schwartz jefftschwa...@gmail.com wrote: I am using a SimplePager but the last page button is never enabled. I

Re: GWT Visualization not compiling on Netbeans

2010-07-06 Thread Benju
I also have this problem. On Jun 17, 5:17 pm, Luiz Gustavo Arruda gu.e...@gmail.com wrote: Hi guys! The following issue is happening when I'm trying to compile my project with as Visualization module on Netbeans. I've update all jars, (ajaxloader and gwt-visualization it self). Here is:

MVP example on Wiki, completing the thought.

2010-01-04 Thread Benju
On the GWT wiki there is a new article (http://code.google.com/ webtoolkit/doc/latest/tutorial/mvp-architecture.html) with good example of how MVP code should work. I found the following quote interesting... Method setData() is a simple way of getting model data into the view without the view

[gwt-contrib] Re: now.. afetr GWT 2.0?

2009-12-17 Thread Benju
GWT is already really really fast for end users but speed of development could use some work. I don't know how but speed of development needs to be improved, specifically dev mode times. On Dec 16, 10:01 am, Bruce Johnson br...@google.com wrote: Working on a draft one. What do folks here

Re: TabLayoutPanel css

2009-12-11 Thread Benju
I had the exact same problem! On Nov 25, 2:39 pm, P.G.Taboada pgtabo...@googlemail.com wrote: Hi, I am test drivingTabLayoutPanel, but I can't find any css in the themes delivered by gwt rc1 | rc2 for this component. Am I missing something? brgds Papick -- You received this message

Re: LayoutPanel support in RC2

2009-11-29 Thread Benju
It turns out I just forgot to update my lib folder's jars thus I was only using the new GWT Development mode. On Nov 28, 9:42 pm, Benju b...@fastcastmedia.com wrote: Has anybody managed to get the GWT layout panels to work in RC2?  In the javadoc for SplitLayoutPanel has the following example

Themes in GWT 2.0 RC2

2009-11-29 Thread Benju
Are the themese in GWT 2.0 going to create a default look and feel for layoutpanel widgets? I have noticed that inheriting the default themes does not affect the look of the following... DockLayoutPanel, , SplitLayoutPanel, StackLayoutPanel, TabLayoutPanel Is this something that will be added

LayoutPanel support in RC2

2009-11-28 Thread Benju
Has anybody managed to get the GWT layout panels to work in RC2? In the javadoc for SplitLayoutPanel has the following example that does not work for me, it just shows a blank page. SplitLayoutPanel p = new SplitLayoutPanel(); p.addWest(new HTML(navigation), 128);

Has anybody ever implemented java.util.UUID in GWT?

2009-10-26 Thread Benju
Has anybody here successfully managed to implement java.util.UUID in GWT? I have seen some examples of a GWT-specific UUID but it would be nice if it was added to the core JRE emulation library. Any thoughts? --~--~-~--~~~---~--~~ You received this message

Re: GWT architecture MVP/EventBus (mentioned at Google I/O)

2009-06-12 Thread Benju
resources describing MVP in the sort of context appropriate to GWT. On Jun 12, 7:39 am, Thomas Broyer t.bro...@gmail.com wrote: On 11 juin, 21:34, Benju b...@fastcastmedia.com wrote: I did not attend Google I/O but as soon as the video Google I/O 2009 - Best Practices for Architecting GWT App

GWT architecture MVP/EventBus (mentioned at Google I/O)

2009-06-11 Thread Benju
I did not attend Google I/O but as soon as the video Google I/O 2009 - Best Practices for Architecting GWT App (http://www.youtube.com/ watch?v=PDuhR18-EdM) was posted I reviewed it and was a bit confused by the idea of an EventBus. From what I can tell the idea is that UI widgets requiring data

Re: GWT 1.6 with Maven and build system questions/survey...

2009-04-17 Thread Benju
It would seem my original post has uncovered all sorts of aches and pains with the new GWT structure. Personally I use maven with the GWT- maven plugin from Google code and only had to change the version number of GWT 1.6.4 and it worked. I don't actually fully understand what was changed but I

Re: GWT 1.6 with Maven and build system questions/survey...

2009-04-15 Thread Benju
On second though I think I agree with Salvador. Looking closer at the Codehaus plugin it should do the job job in the long term. On Apr 15, 1:20 am, Salvador Diaz diaz.salva...@gmail.com wrote:  Who agrees that having a solid, feature complete Maven plugin from Google would increase

Re: GWT 1.6 with Maven and build system questions/survey...

2009-04-14 Thread Benju
I find it somewhat odd that the GWT team does not just create an official maven plugin. They can program the most amazing Java to Javascript cross compiler, have the most shiny widgets and speedy RPC services but if people are left in the dark as to how to build the bloody thing it will never be

GWT 1.6 with Maven and build system questions/survey...

2009-04-09 Thread Benju
I am curious if anybody using Maven+GWT has tried moving to GWT 1.6 yet. I noticed there is no public repository containing the 1.6 realease only RC, Beta, and Milestones. I can always manually deploy GWT to our internal repository but it's a bit of a pain. Also, if anybody is using GWT+Maven