Re: Dynamically generated HTML and GWT

2013-05-31 Thread David
Form submission works like any form, so you will need a servlet to handle the post. You will have to redirect the post to an internal IFrame otherwise your document will be replaced. This is what the GWT Form widget is doing. David On Thu, May 30, 2013 at 5:43 PM, Mike Dee mdichiapp...@gmail.com

How would like to load the GWT module dyanamically basing on the click of respective link?

2013-05-31 Thread sarath upadrista
I would like to load different gwt modules withIn the main div basing on the click of respective menuItem. I would like to use JQuery. In the below code, I would like to load the fooGwt module if we click on theloadFooModule and similarly, if I click on loadJqueryModule link then JQuery gwt

Re: Wrong UTF-8 string parsing in GWT JSON

2013-05-31 Thread Tibor Szolnoki
Dear Philippe, You are right... If I change the escaped (\u) codes to UTF-16, for my example: String response={ \test\ : \\\u00c1\\u00c9\\u0170\ }; //ÁÉÜ in UTF-16 All works correctly. But I found a strange thin too: If I disable the\u escaping in JSON writer in server side, all works

GWT: Pass click event from widget contained in cell to the celltable

2013-05-31 Thread AD
0 down vote favoritehttp://stackoverflow.com/questions/16826291/gwt-pass-click-event-from-widget-contained-in-cell-to-the-column# I have a widget that I render in a GWT cell, which extends the AbstractCell, via the render function below. The column is created as below with the getValue

Firing a click event on a CellTable

2013-05-31 Thread Chris
Hello, I am interested in using GWTTestCase to test some features of a view that extends CellTable. In my implementation, I have added a CellPreviewHandler that I would like to check by firing a click event on a cell of the CellTable. I have tried several methods to no avail. My most recent

Re: how to inherit external module jxl ? Problems working with excel sheets

2013-05-31 Thread Wajih Msedi
Hi. Dalla. I am stuck with the same problem. Could you explain how you do it on the server side ? Thank you. Le dimanche 19 juillet 2009 21:35:58 UTC+2, Dalla a écrit : You could do this using a file upload to the server, do the excel work on the server side and then serialize the data and

Problem on Project: GWT + JPA(eclipselink 2.4) + DB(postgresql 9)

2013-05-31 Thread Eduardo Miguel Borges da Silva
Hi people! I'm new on the GWT 'world' and i'm making my final project of my graduation. On this project I need use persistence and my problems begin here... I'm trying to call a RPC but it return an error on create the Entity Manage Factory :( This is the first warning: Starting Jetty on

UI Designer GWT Developer BEST Workflow Practices?

2013-05-31 Thread Clarissa G
Is there a way for a UI designer (myself) to still use clean HTML/CSS while pulling in GWT features/elements (that may use UIBINDER) instead of having to find/customize/use throw away jquery to demo functionality? -- You received this message because you are subscribed to the Google Groups

GWT support

2013-05-31 Thread Katherine Mancera
good day I want to get started with GWT in a project, but I doubt arises about it is that if google stop stand how long or not that is not yet covered. thank you very much -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe

Re: GWT issue tracker spring cleaning

2013-05-31 Thread Thomas Broyer
On Thursday, May 30, 2013 8:36:23 PM UTC+2, Ed wrote: BTW: Note: some issues that are marked as Stale, I am planning to pick up and submit a patch, but that will not be soon, seen my agenda. So I hope the issue will still be considered then (or is considered dead by then when no activity

Re: GWT support

2013-05-31 Thread tskardal
Don't worry. Have a look at this video from this years IO conference: https://developers.google.com/events/io/sessions/327833110 On Thursday, May 30, 2013 7:09:42 PM UTC+2, Katherine Mancera wrote: good day I want to get started with GWT in a project, but I doubt arises about it is that

Re: Wrong UTF-8 string parsing in GWT JSON

2013-05-31 Thread Thomas Broyer
On Friday, May 31, 2013 10:07:23 AM UTC+2, Tibor Szolnoki wrote: Dear Philippe, You are right... If I change the escaped (\u) codes to UTF-16, for my example: String response={ \test\ : \\\u00c1\\u00c9\\u0170\ }; //ÁÉÜ in UTF-16 All works correctly. But I found a strange thin

Re: Wrong UTF-8 string parsing in GWT JSON

2013-05-31 Thread Tibor Szolnoki
In RFC4627: JSON String and Text is two different things. Text: is a sequence of JSON objects, with barckets, strings, quotes etc... (RFC4627 section 2.) String: Is a JSON basic data type (single JSON data). (RFC4627 section 2.5.) As RFC4627 text and string encoding shall be different. As you

Re: Problem on Project: GWT + JPA(eclipselink 2.4) + DB(postgresql 9)

2013-05-31 Thread Jens
@Warning: Do you use that mentioned class? If not check your web.xml if its registered as listener. @Exception: Do you have javax.persistence-1.0 and javax.persistence-2.0 on classpath / in WEB-INF/lib ? Looks like your RpcUtilizadoresImpl uses a method of javax.persistence.Persistence

Re: UI Designer GWT Developer BEST Workflow Practices?

2013-05-31 Thread BST
I am not sure if I understand you correctly, I am guessing you want to just use HTML/CSS for designing, so you could just mockup using html and copy the same into an ui.xml, maybe inside a HTMLPanel widget. The HTMLPanel is a div in itself, and all your html code with css would remain the

EJB-GWT and Netbeans IDE

2013-05-31 Thread Lehel
Hi, I wrote a short blog about using ejb and gwt in Netbeans ide: http://lehelsipos.blogspot.com/2013/05/ejb-gwt-and-netbeans-ide.html Lehel -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop

change in children not saved in GWT 2.5.1 after implement OSIV

2013-05-31 Thread Yan
Hi there, I have a Parent object containing a list of Children objects. Both are EntityProxy. My RequestFactory API is to persist the Parent along with Children collection. My JPA layer is EclipseLink (JPA 1.0), with entity manager cache ENABLED. In UI, I change some property on children

Re: Get Data CellTable

2013-05-31 Thread sebastien . ribeil
Maybe there is an other way to do that? I don't find a solution... Le jeudi 30 mai 2013 14:14:33 UTC-4, sebastie...@isen-lille.fr a écrit : I don't find a method to simply get the text in a cell. It's very weird! Le mercredi 29 mai 2013 14:46:48 UTC-4, sebastie...@isen-lille.fr a écrit :

Re: Dynamically generated HTML and GWT

2013-05-31 Thread Mike Dee
Now, this has gone from fun to just downright frustrating. I'm stuck at the point of finding and wrapping the submit button. I get the ubiquitous, A widget that has an existing parent widget may not be added to the detach list. Looked through the dozens of posts regarding that message. The

Re: Get Data CellTable

2013-05-31 Thread David
The cells are reused so there's no way to get a specific rendered cell from the CellTable. Update the object in your data provider and call refresh() or updateRowData(...). On Friday, May 31, 2013 3:44:08 PM UTC-5, sebastie...@isen-lille.fr wrote: Maybe there is an other way to do that? I

Re: Get Data CellTable

2013-05-31 Thread sebastien . ribeil
Thanks for your answer! In fact, I don't want to refresh my table. I just want to get all the data which are in my table. My table is editable by the final user. Le vendredi 31 mai 2013 17:59:38 UTC-4, David a écrit : The cells are reused so there's no way to get a specific rendered cell

[gwt-contrib] Change in gwt[master]: Add hasClassName method in com.google.gwt.dom.client.Element

2013-05-31 Thread Andrey Korzhevskiy
Hello Colin Alworth, Thomas Broyer, Goktug Gokdogan, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/3070 to look at the new patch set (#5). Change subject: Add hasClassName method in com.google.gwt.dom.client.Element

[gwt-contrib] Change in gwt[master]: Add hasClassName method in com.google.gwt.dom.client.Element

2013-05-31 Thread Andrey Korzhevskiy
Andrey Korzhevskiy has abandoned this change. Change subject: Add hasClassName method in com.google.gwt.dom.client.Element .. Abandoned broken style -- To view, visit https://gwt-review.googlesource.com/3070 To unsubscribe,

[gwt-contrib] Change in gwt[master]: Add hasClassName method in com.google.gwt.dom.client.Element

2013-05-31 Thread Andrey Korzhevskiy
Andrey Korzhevskiy has restored this change. Change subject: Add hasClassName method in com.google.gwt.dom.client.Element .. Restored -- To view, visit https://gwt-review.googlesource.com/3070 To unsubscribe, visit

[gwt-contrib] Change in gwt[master]: Add hasClassName method in com.google.gwt.dom.client.Element

2013-05-31 Thread Andrey Korzhevskiy
Andrey Korzhevskiy has posted comments on this change. Change subject: Add hasClassName method in com.google.gwt.dom.client.Element .. Patch Set 5: Uploaded patch set 5: sorted methods according gwt code style. -- To view,

[gwt-contrib] Change in gwt[master]: Add hasClassName method in com.google.gwt.dom.client.Element

2013-05-31 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Add hasClassName method in com.google.gwt.dom.client.Element .. Patch Set 5: Please don't change the order. It looks like it is previously agreed upon not to

[gwt-contrib] Re: Removing support for old browsers

2013-05-31 Thread Thomas Broyer
On Thursday, May 30, 2013 8:19:37 PM UTC+2, Jens wrote: How would soft permutations work if you have browser version specific JS hacks/workarounds implemented during JJS compilation? If you have a workaround for IE6 and a different one for IE7 and you can't mix both, then you are

[gwt-contrib] Change in gwt[master]: Update how columns are hidden in CellTable.

2013-05-31 Thread Jens Nehlmeier
Jens Nehlmeier has posted comments on this change. Change subject: Update how columns are hidden in CellTable. .. Patch Set 2: (1 comment) File

[gwt-contrib] Change in gwt[master]: Add hasClassName method in com.google.gwt.dom.client.Element

2013-05-31 Thread Andrey Korzhevskiy
Hello Colin Alworth, Thomas Broyer, Goktug Gokdogan, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/3070 to look at the new patch set (#6). Change subject: Add hasClassName method in com.google.gwt.dom.client.Element

[gwt-contrib] Change in gwt[master]: Removes delegation of event from TextBox event handler insid...

2013-05-31 Thread Patrick Tucker
Patrick Tucker has posted comments on this change. Change subject: Removes delegation of event from TextBox event handler inside SuggestBox. .. Patch Set 1: Code-Review+1 Cool thanks for transferring this one over! -- To

[gwt-contrib] Re: GWT Coding Style Update

2013-05-31 Thread Thomas Broyer
On Friday, May 31, 2013 3:22:21 AM UTC+2, Goktug Gokdogan wrote: Hi folks. We currently have a coding style guide for GWT-SDK here: https://developers.google.com/web-toolkit/makinggwtbetter#codestyle The guide has some enforcements like static/non-static + alphabetical ordering.

[gwt-contrib] Change in gwt[master]: Removes delegation of event from TextBox event handler insid...

2013-05-31 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Removes delegation of event from TextBox event handler inside SuggestBox. .. Patch Set 1: Code-Review+2 Should we add a test for it? (dispatch an event on

Re: [gwt-contrib] GWT Coding Style Update

2013-05-31 Thread Stephen Haberman
What problems has it caused? I like the coding style as is, although it is a learning curve for contributors. I believe I have the basics down now, but am never quite sure. I think it would be nice if getting them setup in both Eclipse and IntelliJ was dead simple, instead of the current

[gwt-contrib] Change in gwt[master]: Ensures integer pixel values and adds getters for subpixel v...

2013-05-31 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Ensures integer pixel values and adds getters for subpixel values .. Patch Set 1: After thinking about this overnight, here's my take on this. (Keep in

[gwt-contrib] Change in gwt[master]: Ensures integer pixel values and adds getters for subpixel v...

2013-05-31 Thread Jens Nehlmeier
Jens Nehlmeier has posted comments on this change. Change subject: Ensures integer pixel values and adds getters for subpixel values .. Patch Set 1: Actually what I like about the current state in this CL is that it's

[gwt-contrib] Change in gwt[master]: Update how columns are hidden in CellTable.

2013-05-31 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Update how columns are hidden in CellTable. .. Patch Set 2: Code-Review+2 Seems okay. If we really need 0% we can do it later. -- To view, visit

[gwt-contrib] Change in gwt[master]: Update how columns are hidden in CellTable.

2013-05-31 Thread Goktug Gokdogan
Hello Leeroy Jenkins, Brian Slesinsky, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/3130 to look at the new patch set (#3). Change subject: Update how columns are hidden in CellTable.

[gwt-contrib] Change in gwt[master]: Ensures integer pixel values and adds getters for subpixel v...

2013-05-31 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Ensures integer pixel values and adds getters for subpixel values .. Patch Set 1: I don't have a strong opinion either way, but I'll point out that class

[gwt-contrib] Change in gwt[master]: Update how columns are hidden in CellTable.

2013-05-31 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Update how columns are hidden in CellTable. .. Patch Set 3: Code-Review+2 -- To view, visit https://gwt-review.googlesource.com/3130 To unsubscribe, visit

[gwt-contrib] Change in gwt[master]: Update how columns are hidden in CellTable.

2013-05-31 Thread Jens Nehlmeier
Jens Nehlmeier has posted comments on this change. Change subject: Update how columns are hidden in CellTable. .. Patch Set 3: Code-Review+1 -- To view, visit https://gwt-review.googlesource.com/3130 To unsubscribe, visit

[gwt-contrib] Change in gwt[master]: Update how columns are hidden in CellTable.

2013-05-31 Thread Goktug Gokdogan
Goktug Gokdogan has submitted this change and it was merged. Change subject: Update how columns are hidden in CellTable. .. Update how columns are hidden in CellTable. Hide columns that shouldn't be visible by setting display

[gwt-contrib] Change in gwt[master]: Ensures integer pixel values and adds getters for subpixel v...

2013-05-31 Thread Stephen Haberman
Stephen Haberman has posted comments on this change. Change subject: Ensures integer pixel values and adds getters for subpixel values .. Patch Set 1: FWIW I like Jen's 4th line as well (i.e. this CL). -- To view, visit

[gwt-contrib] Change in gwt[master]: Removes delegation of event from TextBox event handler insid...

2013-05-31 Thread Goktug Gokdogan
Hello Leeroy Jenkins, Thomas Broyer, Patrick Tucker, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/3141 to look at the new patch set (#2). Change subject: Removes delegation of event from TextBox event handler inside SuggestBox.

[gwt-contrib] Change in gwt[master]: Add hasClassName method in com.google.gwt.dom.client.Element

2013-05-31 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Add hasClassName method in com.google.gwt.dom.client.Element .. Patch Set 6: Code-Review+2 Colin, I'm going +2 this change. If it is going to be a big

[gwt-contrib] Change in gwt[master]: Adds onEnsureDebugId delegation to Composite.

2013-05-31 Thread Goktug Gokdogan
Goktug Gokdogan has uploaded a new change for review. https://gwt-review.googlesource.com/3160 Change subject: Adds onEnsureDebugId delegation to Composite. .. Adds onEnsureDebugId delegation to Composite. Bugs: issue 3812

[gwt-contrib] Change in gwt[master]: Adds onEnsureDebugId delegation to Composite.

2013-05-31 Thread Daniel Kurka
Daniel Kurka has submitted this change and it was merged. Change subject: Adds onEnsureDebugId delegation to Composite. .. Adds onEnsureDebugId delegation to Composite. Bugs: issue 3812 Change-Id:

[gwt-contrib] Change in gwt[master]: Use JSON.parse() instead of eval() to deserialize rpc callba...

2013-05-31 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Use JSON.parse() instead of eval() to deserialize rpc callback payload .. Patch Set 4: Feasible? I'd guess yes. Up to the implementer to decide how they

[gwt-contrib] Change in gwt[master]: Adds onEnsureDebugId delegation to Composite.

2013-05-31 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Adds onEnsureDebugId delegation to Composite. .. Patch Set 1: I was waiting for global presubmit results. It would have been better if you haven't

[gwt-contrib] Change in gwt[master]: Revert Adds onEnsureDebugId delegation to Composite.

2013-05-31 Thread Daniel Kurka
Daniel Kurka has reverted this change. Change subject: Revert Adds onEnsureDebugId delegation to Composite. .. Patch Set 1: Reverted This patchset was reverted in change: Id162c4e9b553a5981f09d26a3d1112dbf085825e -- To

[gwt-contrib] Change in gwt[master]: Adds onEnsureDebugId delegation to Composite.

2013-05-31 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Adds onEnsureDebugId delegation to Composite. .. Patch Set 1: Thanks -- To view, visit https://gwt-review.googlesource.com/3160 To unsubscribe, visit