GWT Designer still supported?

2012-12-09 Thread Jean-Lou Dupont
Is GWT Designer still supported? This piece of software has always been touchy (been using it for 2+years now). Now, I can't get the thing running on 3.6 nor 4.2 Eclipse. I've uninstalled and reinstalled the whole Google suite (sdk, designer, plugin etc.) a couple of times to no avail. I

Change size of an image resource (ImageBundle)?

2012-12-09 Thread membersound
Hello, how can I change the size of an image resource that is used in the following way? public static interface SelectionImages extends ImageBundle { @Resource(image.png) AbstractImagePrototype selectionAll(); } Thank you! -- You received this message because

Re: DataGrid and EditTextCell in sub rows problem

2012-12-09 Thread Nicolas Morel
Hello, This is because the renderCell in AbstractCellTableBuilder is giving the same cellId to your root row cell and sub row cell. I had to do this for a project so I extracted what I did and put it in a sample here : https://github.com/nmorel/gwt-celltable-subrows I couldn't find a better

Installing GWT Designer Error - Cannot complete the install because of a conflicting dependency

2012-12-09 Thread AC
Hi, I'm tring to install GWT Designer on my computer and i get this massege that privent my from finsh the installation Cannot complete the install because of a conflicting dependency. Software being installed: Swing Designer 1.5.1.r37x201211261029 (org.eclipse.wb.swing.feature.feature.group

Re: DataGrid and EditTextCell in sub rows problem

2012-12-09 Thread Nicolas Morel
And just after I wrote that, I found a way to do it without modify AbstractCellTableBuilder. The key here is to create a HasCell for each sub row containing the sub row value or an index to find it from the main row value. I made some helper classes for this like

Re: GWT Designer still supported?

2012-12-09 Thread Thomas Broyer
You should probably ask https://groups.google.com/d/forum/google-plugin-eclipse On Sunday, December 9, 2012 10:02:31 PM UTC+1, Jean-Lou Dupont wrote: Is GWT Designer still supported? This piece of software has always been touchy (been using it for 2+years now). Now, I can't get the thing

problem of docklayoutpanel in IE9

2012-12-09 Thread tong123123
our colleague just found that in IE9, the following is not work: DockLayoutPanel dockLayoutPanel = new DockLayoutPanel(Unit.PX); dockLayoutPanel.setSize(1024, 768); the dockLayoutPanel will not shown (although it works in IE8). In IE9, we must write the px in setsize DockLayoutPanel

GWT Google OpenID login

2012-12-09 Thread dhoffer
I'd like to add OpenID login to my GWT application, I don't think I need OAuth support as I just need to authenticate the user. I'm looking for any examples/suggestions on the best way to do this for a GWT app. Also I just need to authenticate with Google, not any other provider, not sure how

Editor framework problem

2012-12-09 Thread Vesko Georgiev
Hi everyone, I faced the following problem, not sure whether it's a bug or a feature. It occurs if the Driver class has the editor generic type as an interface, but not the actual implementation. Note that MyPersonDriver references MyPersonEditor, not MyPersonEditorImpl. In this case the line:

HOW TO APPLY SORTING FOR THESE SUB HEADERS

2012-12-09 Thread shray rawat
https://lh6.googleusercontent.com/-lgTroTRdUYQ/UMVtHCus--I/A2E/NPOEuRciI-s/s1600/TABLE.JPG SO THIS IS A TABLE FOR EX.. I AM HAVING A,B,C AS MAIN HEADERS AND D,E,F,G AS THE SUB HEADERS UNDER C. sO HOW TO APPLY SORTING FOR THESE SUB HEADERS ALSO. -- You received this message because

Strange results for Window.getClientWidth() on mobile safari vs UIWebView

2012-12-09 Thread markww
Hi, I've got a GWT app which simply reports the client width: Label label = ...; label.setText(Client width: + Window.getClientWidth()); I'm getting strange results on an iphone 4S (retina device). When run from mobile safari, it reports 980 pixels, which is expected. I then created