Can't get through the GWT Designer quick start guide

2013-03-18 Thread o . vandermeer
Hi, I try to use the GWT Designer and tried starting with the quick start guide (gwtdesigner quick_start), but can't get through it. At step 1: I have installed a new Eclipse environment and installed the Google Plugin

Can't get through the GWT Designer quick start

2013-03-18 Thread o . vandermeer
Hi, I try to use the GWT Designer and tried starting with the quick start guid, but can't get through it. At step 1: I have installed a new/fresh installation of Eclipse and installed all 6 available plugins using 'install new software' in Eclipse. At step 2 (*Install the latest GWT Designer

Get String Width in Pixels

2013-03-18 Thread Dominic Warzok
Hey, is there a possibility to get the expected Srting width in pixel ? I need this because I have a navigation bar with a width of 300px. And there are varius names which I want to show in it. Now I want to truncate the String if it is longer than 300px. Thanks in advance -- You receive

Re: Chrome GWT plugin 1.0.11357

2013-03-18 Thread Igor Zubchenok
Anyone, could you help me to download/install latest GWT develop plugin for Chrome? On Thursday, March 14, 2013 1:06:01 PM UTC+3, Igor Zubchenok wrote: > > Hi! > > Where can I download the plugin .crx file for manual installation? > > > https://chrome.google.com/webstore/detail/gwt-developer-plug

Re: Chrome GWT plugin 1.0.11357

2013-03-18 Thread Thomas Broyer
AFAICT, this file is the extension: https://gwt.googlesource.com/gwt-plugins/+/master/npapi/prebuilt/gwt-dev-plugin.zip (or at least what's needed to publish it to the Chrome Web Store) You're lucky enough that the latest revision was made before the complete move to Git for the plugins, so it

How to use Objects in SuggestBox instead of text Strings?

2013-03-18 Thread membersound
Hi, I want to extend my MultiValueSuggestBox to not display strings, but a specific String property of an Object (or DTO). My goal is: a user should create an objects with several properties, and only show one of these properties for suggetions. But when the user later renames this specific pro

Re: Get String Width in Pixels

2013-03-18 Thread Philippe Lhoste
On 18/03/2013 09:15, Dominic Warzok wrote: is there a possibility to get the expected Srting width in pixel ? I need this because I have a navigation bar with a width of 300px. And there are varius names which I want to show in it. Now I want to truncate the String if it is longer than 300px.

Re: Get String Width in Pixels

2013-03-18 Thread Jens
CSS example: http://quirksmode.org/css/user-interface/textoverflow.html -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@goog

Re: Converting JavaScript project to GWT component

2013-03-18 Thread Philippe Lhoste
On 12/03/2013 17:52, Ben Cuthbert wrote: Has anyone got any good tutorials on converting Javascript projects like http://needim.github.com/noty/ to GWT components? Probably not, not to my knowledge. You can write a simple wrapper using JSNI. But if you mean to rewrite the functionality in pure

Re: Displaying timezone in Eastern Time

2013-03-18 Thread Philippe Lhoste
On 08/03/2013 23:06, gusse...@gmail.com wrote: Need to display the timezone abbreviation for example this code produce: Date date = getPanelForm().getRecentDate();*return*DateTimeFormat./getFormat/("MM'/'dd/yy hh:mm z").format(date); Displays as : 03/08/13 04:21 UTC-5 would like : 03/08/13 04

Is there any ArrayMap?

2013-03-18 Thread membersound
Hi, I'd need some client-side ArrayMap: a combination of a LinkedHashMap that preserves the order of insertion, and some kind of index() method that provides insertion of an element at a specific index position (like ArrayList.add(index, object)). Is there anything build in GWT, or maybe a mo

Re: Chrome GWT plugin 1.0.11357

2013-03-18 Thread Igor Zubchenok
Thank you very much Thomas! Based on your idea I cloned the repository and packed GWT plugin manually. Everyone who has an issue with GWT plugin for Chrome in Windows 8 can download packed by me plugin here: https://www.dropbox.com/s/ldtpxuuh9ovof12/gwt-dev-plugin.crx version 1.0.11357 To insta

Re: Can't get through the GWT Designer quick start

2013-03-18 Thread Michael Prentice
When you install the GPE with GWT, your SDK dir will be something like this: eclipse\plugins\com.google.gwt.eclipse.sdkbundle_2.5.0.v201212122042-rel-r42\gwt-2.5.0 You should have selected to install the GWT Designer when you installed the GPE from here: https://developers.google.com/eclipse/doc

Re: Can't get through the GWT Designer quick start

2013-03-18 Thread Michael Prentice
I took a look at the GWT Designer Quick Start Guide here: https://developers.google.com/web-toolkit/tools/gwtdesigner/quick_start And it is quite out of date. It has links and instructions for Eclipse 3.5 and 3.6. Also the screenshots on the linked pages are no longer accurate. There is a much

How to make dotted strokes on a canvas?

2013-03-18 Thread membersound
Hi, how can I set the stroke style when drawing on a canvas? (trying to make a rectangle with dotted border) Looking for something like: context.setBorder("1px dotted black"); -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscri

Re: How to make dotted strokes on a canvas?

2013-03-18 Thread Samyem Tuladhar
http://phrogz.net/tmp/canvas_dashed_line.html On Monday, March 18, 2013 12:52:48 PM UTC-4, membersound wrote: > > Hi, > > how can I set the stroke style when drawing on a canvas? (trying to make > a rectangle with dotted border) > > Looking for something like: context.setBorder("1px dotted blac

Re: Is there any ArrayMap?

2013-03-18 Thread alucard
Have you tried looking into guava-gwt ? On Monday, March 18, 2013 1:40:06 PM UTC+1, membersound wrote: > > Hi, > > I'd need some client-side ArrayMap: a combination of a LinkedHashMap that > preserves the order of insertion, and some kind of index() me

Can't deploy my project anymore

2013-03-18 Thread JoyaleXandre
Hi everybody, Since friday I can't deploy my project anymore. Went I start the war generation with the deploy button I instantly get an error *message saying*: "Designer error occured. Select Details >> for more information. See the Error Log for more information. Reason: Parse error or intern

Re: Can't deploy my project anymore

2013-03-18 Thread JoyaleXandre
These are all my Installed plugin and version if it can help. CollabNet Merge Client3.0.13 com.collabnet.subversion.merge.feature.feature.groupCollabNet Eclipse IDE for Java Developers1.5.2.20130211-1820 epp.package.javanull Google App Engine Java SDK 1.7.51.7.5

Re: How to make dotted strokes on a canvas?

2013-03-18 Thread Kody
Hm ok that might be a nice solution for a straight line. But what about curves? What if I eg create a Rectangle with round corners (which I want in the long). I thought there might be something to tell a line it should always be dashed/spaced. Cause the link you provided is probably not adaptable