Re: GWT RPC method in Window.onClose() no longer being called from Firefox

2013-06-06 Thread mark . erikson
I've actually seen similar behavior in Firefox 17 ESR. I wound up implementing the following horribly disgusting hack as a workaround: myRPCInterface.logOut(new AsyncCallback() { public void onFailure(Throwable caught) { } public void onSu

Re: CellTable disapears when a row click occurs and a RichTextArea widget is present

2013-06-06 Thread Luis Costa
Here it is a simple case (see attachment) Quinta-feira, 6 de Junho de 2013 19:58:56 UTC+1, Luis Costa escreveu: > > Hi all, > > I'm using GWT 2.5.1 and GWTP. > > Something very strange is happening, I've a RichTextArea widget and a > cellTable. > > > If I try to select a row all cellTable disappe

Re: Export Pie Chart to Excel

2013-06-06 Thread Joseph Lust
POI has the limited ability to do this if you can create a standard template pie chart for it to start from. http://poi.apache.org/spreadsheet/limitations.html Sincerely, Joseph -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubsc

Re: CellTable disapears when a row click occurs and a RichTextArea widget is present

2013-06-06 Thread Adolfo Panizo Touzon
Can you post some code? Or error information? On Thu, Jun 6, 2013 at 8:58 PM, Luis Costa wrote: > Hi all, > > I'm using GWT 2.5.1 and GWTP. > > Something very strange is happening, I've a RichTextArea widget and a > cellTable. > > > If I try to select a row all cellTable disappears!

CellTable disapears when a row click occurs and a RichTextArea widget is present

2013-06-06 Thread Luis Costa
Hi all, I'm using GWT 2.5.1 and GWTP. Something very strange is happening, I've a RichTextArea widget and a cellTable. If I try to select a row all cellTable disappears! But if I remove RichTextArea widget or replace the cellTable for a DataGrid and select a row (clicking in the cellTab

javascript call to java method doesn´t work in developing mode - but when code is compiled (GWT 2.51)

2013-06-06 Thread Olaf Raether
If have a Class that looks similar like this: public class MyClass extends Widget { public MyClass() { declareMethod(this); } //Method which declares non-static method in javascript public native void declareMethod(MyClass this) /*-{ var _this = this; $wnd

GWT RPC method in Window.onClose() no longer being called from Firefox

2013-06-06 Thread eprice
I have a GWT application that registers a CloseHandler for the CloseEvent. This handler calls the logout() method in another class, which does some cleanup and calls an RPC method to log the user out of the underlying server application (the GWT application is a client with web server being mi

Re: Overuse of "AssumedStale" Issue Tag

2013-06-06 Thread Thomas Broyer
On Thursday, June 6, 2013 6:27:57 PM UTC+2, Amir Alavi wrote: > > ...so what was the answer to this guy's question? > > And a follow-up question: Making GWT more maintainable makes perfect >> sense, so I understand the need to modularize GWT by externalizing several >> components. *But*, does t

Re: Overuse of "AssumedStale" Issue Tag

2013-06-06 Thread Amir Alavi
...so what was the answer to this guy's question? And a follow-up question: Making GWT more maintainable makes perfect sense, > so I understand the need to modularize GWT by externalizing several > components. *But*, does that also imply that the Steering Committee as a > whole would be effecti

Re: Printing the entire content of a DataGrid or a CellTable ?

2013-06-06 Thread Adolfo Panizo Touzon
I understand your are adding your DataGrid to some kind of DataProvider in order to inject the data into the "DataGrid". Si if this your case, the only thing that you need to do is get the list of data from your data provider and iterate over it printing wherever you want. I am speaking based on

Printing the entire content of a DataGrid or a CellTable ?

2013-06-06 Thread Celinio
Hi, I need to print all the rows that are returned in my DataGrid, not just the rows that are visible on a page (according to the pager size). How do i do that ? The trick with JSNI and the JavaScript print() function will not work in that case. Thanks in advance for helping. -- You received th

Re: Search for a substring in a string ignoring accented characters

2013-06-06 Thread Philippe Lhoste
On 04/06/2013 15:27, Eric Bouchut wrote: I cannot find a way, using GWT's *_JRE emulation_,* to : * *search* *for a* sub *string* in a String *ignoring accented characters* (diacritics) * *remove accented characters* from a String Remove or replace? Remove is relatively trivial. For exam

Re: Export Pie Chart to Excel

2013-06-06 Thread Philippe Lhoste
On 05/06/2013 22:27, Siddharthan Ilangovan wrote: I am looking for an optoin to export Pie Chart to Excel. Am using com.googlecode.gwt.charts.client.corechart.PieChart to build my chart. Please guide and new to gwt development. Export the data as CSV, import it in Excel, tell it to draw the pi

Re: can't launch via servlet

2013-06-06 Thread Adolfo Panizo Touzon
Happy to help! On Thu, Jun 6, 2013 at 12:03 PM, Hélène Czaja wrote: > I've find a solution : i declare a jsp in the web.xml which redirect me > toward the home servlet of my website, so no servlet is declared with "/" > mapping. > > So i can use normally my GWT script... > > Thanks for your resp

Re: can't launch via servlet

2013-06-06 Thread Hélène Czaja
i don't see any 404, if i inspect the script nocache.js it shows me the html code? I've that error in the console too : "Uncaught SyntaxError: Unexpected token < " I made more tests and it seems that the issue come from the servlet mapping, when the mapping is "/", the GWT part doesn't exist

Re: can't launch via servlet

2013-06-06 Thread Hélène Czaja
I've find a solution : i declare a jsp in the web.xml which redirect me toward the home servlet of my website, so no servlet is declared with "/" mapping. So i can use normally my GWT script... Thanks for your response.. Le jeudi 6 juin 2013 11:21:03 UTC+2, apanizo a écrit : > > If you see the

Re: can't launch via servlet

2013-06-06 Thread Adolfo Panizo Touzon
If you see the Network console on the Developers Tools (in chrome F12) what are you seeing? Any 404? Can give us more information about your WebContent folder? I have just created an example and is working fine for me. On Thu, Jun 6, 2013 at 10:19 AM, Hélène Czaja wrote: > Hi, > > i'm not a be

can't launch via servlet

2013-06-06 Thread Hélène Czaja
Hi, i'm not a beginner but i can't solve this problem : I have a jsp which include my gwt script : JSP Page When i launch the jsp via a myjsp.jsp in web.xml it's OK : But when i declare a servlet in web.xml to launch the jsp, the jsp is launched but the gwt part i