Re: RF, ServiceLayerDecorator : The domain type com.test.persistance.entites.base.BaseTest cannot be sent to the client

2013-07-03 Thread aurelie . virgile
Hi thomas. Thanks for replying me. I read carefully what you wrote earlier. And you are 100% right. MyRFServlet and Decorator were removed and i did add BaseMvtProxy as ValueProxy( @ProxyFor(value = BaseTest.class, locator = BaseMvtLocator.class) Method inside this proxy are the same as

using external .jar as object library

2013-07-03 Thread samuel . kallmeyer
Hi, I'm starting with gwt, and I'm trying to create datas wich will be used later within the GWT project. In order to create this library (POJO library), I'm using the common way: xsd + JAXB In order to use it within the gwt, I added the inherits name='test.data.generated.Login'/ within my GWT

Re: GWT website moved to gwtproject.org

2013-07-03 Thread stuckagain
Great work! Wouldn't it be nice if the online docs would have been created as a GWT application as well ? Right now navigation in the documentation is a bit '90s style where I always lose track of the index since the whole page is reloaded when I click on a subject. It could be a very nice

Re: GWT website moved to gwtproject.org

2013-07-03 Thread Daniel Kurka
Thanks for your feedback David. The webpage need to be search index able, this is why we decided to go with plain HTML, but it uses GWTQuery to do progressive enhancement so the page should not load entirely if you have javascript enabled. It will change the URL though by using the html5 history

Re: using external .jar as object library

2013-07-03 Thread Jens
Add source path=/ to your *.gwt.xml if the Java sources are in the same package as the GWT module xml file. By default GWT assumes that your Java source files are in a sub folder called client next to your *.gwt.xml file. -- J. -- You received this message because you are subscribed to the

Listbox addItem from sql database from select statement

2013-07-03 Thread Bob Spero
I have a gwt app that I am working on, on the root panel I have a combo box and a list box. I want to populate the list box based on the selection from the combo box. Example would be select first name, last name where id = empComboBox.value How can this be accomplished??? -- You

CellList as Dropdown List?

2013-07-03 Thread Magnus
Hi, I would like to use a cell list to display users, similar to the GWT show case example for Cell List: A small icon displaying the users avatar and some text. So far so good and I could go with the example code provided in the show case. But I want it a little bit different: The list

Re: GWT In Eclipse Debug Mode All Of A Sudden is Super Slow

2013-07-03 Thread Carl
Breakpoints! That's it. I've had on and off slow performance when debugging my GWT app. Removing all breakpoints snapped performance right back to normal! excellent! thanks for posting. On Friday, 30 November 2012 12:30:39 UTC, hummh wrote: I had the same problem. There was a breakpoint at

Re: Listbox addItem from sql database from select statement

2013-07-03 Thread Jens
Add a selection handler to your combo box so you get notified when the combo box selection changes. Then use any of GWT's server communication capabilities (GWT-RPC, RequestFactory, RequestBuilder) to send the selected combo box value to the server so you can use it in your query. Of course

Re: CellList as Dropdown List?

2013-07-03 Thread Jens
Use SuggestBox(SuggestOracle, ValueBoxBase, SuggestionDisplay) and provide a custom SuggestionDisplay. The SuggestionDisplay can be anything, so you could implement it using a CellList if you want. -- J. -- You received this message because you are subscribed to the Google Groups Google Web

How to set the Cursor back to position zero after clearing a TextArea in GWT?

2013-07-03 Thread confile
I am using a textarea in my GWT application: @UiField TextArea inputArea; When the user hits the return key the text should be deleted and the cursor should be set to the beginning of the textbox. I tried the following: inputArea.setText(); This is not working. The textbox seems

Re: How to set the Cursor back to position zero after clearing a TextArea in GWT?

2013-07-03 Thread Thomas Broyer
You're probably clearing the textarea *before* the enter key is processed, so a new line is added just after. Try cancelling the key (preventDefault). On Wednesday, July 3, 2013 11:46:22 PM UTC+2, confile wrote: I am using a textarea in my GWT application: @UiField TextArea

Killing myself for a good database example GWT Combo and Listbox

2013-07-03 Thread Bob Spero
I can really use some direction, I worked all day on this and made little progress. I have a GWT application that has a combo box and list box, I want the selection of the combo box to load values from my MSSql server 2008 box, I want my list box to populate the value based on the selected

Re: Killing myself for a good database example GWT Combo and Listbox

2013-07-03 Thread Timothy Spear
Bob, To many variables and possible ways to solve that puzzle. Since you are using documentation on the web I would suggest the following. First: If you want to use Hibernate, get a simple Hibernate application working first. Second: Build a simple GWT application where you create a stub to

Re: [gwt-contrib] Re: Temporarily disabling CR+2 on Gerrit

2013-07-03 Thread Matthew Dempsky
Hm, so checking history, it looks like the call was added in a recent change Ray made to our local copy of GWT exporter. I'm not too knowledgeable about GWT exporter though. I'll have to figure out more from Ray once he's back from vacation. On Wed, Jul 3, 2013 at 3:33 AM, Manuel Carrasco

[gwt-contrib] Change in gwt[master]: Optimize initializing fields at the top scope.

2013-07-03 Thread Roberto Lublinerman
Roberto Lublinerman has posted comments on this change. Change subject: Optimize initializing fields at the top scope. .. Patch Set 9: Code-Review+2 -- To view, visit https://gwt-review.googlesource.com/3440 To unsubscribe,

[gwt-contrib] Change in gwt[master]: replaces stale jProgram runAsync references and fixes JRunAs...

2013-07-03 Thread Roberto Lublinerman
Roberto Lublinerman has posted comments on this change. Change subject: replaces stale jProgram runAsync references and fixes JRunAsync method inlining to occasionally benefit from tighter types .. Patch Set 1:

[gwt-contrib] Change in gwt[master]: Optimize initializing fields at the top scope.

2013-07-03 Thread Stephen Haberman
Stephen Haberman has submitted this change and it was merged. Change subject: Optimize initializing fields at the top scope. .. Optimize initializing fields at the top scope. Change-Id:

[gwt-contrib] Change in gwt[master]: Fixes Exception wrapping/unwrapping in compiler

2013-07-03 Thread Goktug Gokdogan
Goktug Gokdogan has submitted this change and it was merged. Change subject: Fixes Exception wrapping/unwrapping in compiler .. Fixes Exception wrapping/unwrapping in compiler Change-Id:

[gwt-contrib] Change in gwt[master]: Adds support for unwrapping of thrown non-jso objects from J...

2013-07-03 Thread Goktug Gokdogan
Goktug Gokdogan has uploaded a new change for review. https://gwt-review.googlesource.com/3640 Change subject: Adds support for unwrapping of thrown non-jso objects from JavaScriptException. .. Adds support for