CellTable and TextInputCell not getting focus consistently

2013-01-03 Thread brucelowe
I'm having some focus issues with the TextInputCell and the CellTable in both Firefox and Chrome (but not IE9) Steps 1) You click on 1 TextField - it correctly gets focus and you can type, 2) Click on a 2nd TextField that field does not get focus - the cell (TD) seems to gain the focus. 3)

Re: CellTable and TextInputCell not getting focus consistently

2013-01-03 Thread Thomas Broyer
On Thursday, January 3, 2013 10:02:05 AM UTC+1, brucelowe wrote: I'm having some focus issues with the TextInputCell and the CellTable in both Firefox and Chrome (but not IE9) Steps 1) You click on 1 TextField - it correctly gets focus and you can type, 2) Click on a 2nd TextField that

Tree - Change order of Handler execution?

2013-01-03 Thread membersound
Hi, I have expanded the Tree element and add each one SelectionHandler, OpenHandler, CloseHandler to my Custom Tree class. The problem is: whenever I close a tree, then first the SelectionHandler is executed, and then the CloseHandler. All other things work fine: if I open the tree, only

How to extend GWT Widgets and use them with Ui-Binder?

2013-01-03 Thread membersound
I'm creating a custom Tree component which extends the GWT Tree. But how can I use my custom tree with ui:binder?? I tried the following which did not work: my custom tree: public class CustomTree extends Tree { public CustomTree() { //... } } MyPanel.ui.xml: ui:UiBinder

How to add optional parameters for ui-binder?

2013-01-03 Thread membersound
Hi, when looking at eg VerticalPanel, I can provide optional parameters like width and height via ui-binder. I only found @UiConstructor, but this would force the ui:binder to provide the parameters for the constructor annotated like this. How can I create these kind of additional parameters

How to select an entry in a Tree (highlight)?

2013-01-03 Thread membersound
Hi, how can I add selection row highlighting to a tree widget? Or is this ever possible? Thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: How to add optional parameters for ui-binder?

2013-01-03 Thread Thomas Broyer
On Thursday, January 3, 2013 1:56:13 PM UTC+1, membersound wrote: Hi, when looking at eg VerticalPanel, I can provide optional parameters like width and height via ui-binder. I only found @UiConstructor, but this would force the ui:binder to provide the parameters for the constructor

Re: How to add optional parameters for ui-binder?

2013-01-03 Thread membersound
Ok I see, so just by providing setter methods I can add optional params. Thanks, exactly what I was looking for. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: How to extend GWT Widgets and use them with Ui-Binder?

2013-01-03 Thread Andy Stevko
First step - need to add an import declaration for your CustomTree package ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder' xmlns:my='urn:import:test.my.custom' my:CustomTree .../ On Thu, Jan 3, 2013 at 4:18 AM, membersound kodyreco...@gmail.com wrote: I'm creating a custom Tree

Re: How to select an entry in a Tree (highlight)?

2013-01-03 Thread Andy Stevko
The css style rules should allow you to set the background etc for a selected tree item. from http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/user/client/ui/Tree.html CSS Style Rules.gwt-Treethe tree itself.gwt-Tree .gwt-TreeItema tree item.gwt-Tree

Re: No Textbox can take the focus by mouse clicking in IE8

2013-01-03 Thread Daniel Girtler
Has there been a solution yet??? It still happens and I really need a solution On Wednesday, August 1, 2012 10:51:16 PM UTC+2, Patrick Duffy wrote: Has there been a resolution to this problem. Still happening in gwt 2.4 On Tuesday, January 25, 2011 3:56:16 AM UTC-5, AlexF wrote: I have a

Re: Center content of DockLayoutPanel North?

2013-01-03 Thread Andy Stevko
Perhaps apply the style to the Label rather than the north element? On Wed, Jan 2, 2013 at 4:47 AM, membersound kodyreco...@gmail.com wrote: How could I center everything that is placed eg in the north/east/west/south segment of a docklayoutpanel? The following does not work... ui:style

Re: How to select an entry in a Tree (highlight)?

2013-01-03 Thread membersound
It did not work until I found that there seems to be a bug: http://code.google.com/p/google-web-toolkit/issues/detail?id=3800q=tree%20item%20selectedcolspec=ID%20Type%20Status%20Owner%20Milestone%20Summary%20Stars .gwt-Tree .gwt-TreeItem-selected { display: table !important; } worked for me.

Re: Center content of DockLayoutPanel North?

2013-01-03 Thread membersound
If this would work (cannot test this atm), then this would mean I have to apply the center style to each of the elements contained in the panel. But that's exactly what I'm trying to avoid, and why I'm looking for a solution to just tell the whole panel to center everything that is contained

Re: RequestFactory / AutoBean with non-bean value type

2013-01-03 Thread salk31
For what it is worth we have done the ServiceLayerDecorator and @SkipInterfaceValidation approach and it seems OK (keeps domain code cleaner at least) with GWT 2.5. On Thursday, September 15, 2011 11:31:37 AM UTC+1, Thomas Broyer wrote: I don't think ServiceLayerDecorator would work

Re: How to select an entry in a Tree (highlight)?

2013-01-03 Thread Thomas Broyer
Just posted an update to this bug, if you have time to try it out and eventually provide it as a patch. On Thursday, January 3, 2013 3:47:57 PM UTC+1, membersound wrote: It did not work until I found that there seems to be a bug:

CellTable How to disable a cell selection when SingleSelectionModel

2013-01-03 Thread Arash
The base implementation of List Views in my application utilizes SingleSelectionModel. Upon selection, you will be taken to a different place in the application(Selection Place). One of the tables however has a ClickableCell which upon click event will also take you to a different place in the

Re: ERROR MAIL.JAR

2013-01-03 Thread Jambi
Are you trying to use the library directly from the client code? This won´t work since this is a server side issue. You need to invoke the mail service from the server via GWT-RPC for example. best regards, Michael Am Mittwoch, 2. Januar 2013 21:44:22 UTC+1 schrieb Spartacus: I'm

Re: In some situation, DataGrid record cannot be selected

2013-01-03 Thread tong123123
really strange, I find this behavior only occur when KeyboardSelectionPolicy.BOUND_TO_SELECTION is used, but why will this problem occur? and under what circumstance will use expect keyboardSelection is not same as selectionmodel.setSelected?? (that is, when to use

[gwt-contrib] Re: Too many open files when generating ClientBundles (issue1880803)

2013-01-03 Thread t . broyer
LGTM (BTW why was the GWT-Contrib group removed from CC?) http://gwt-code-reviews.appspot.com/1880803/diff/1/user/src/com/google/gwt/resources/rg/ImageBundleBuilder.java File user/src/com/google/gwt/resources/rg/ImageBundleBuilder.java (right):