Re: Dynamically generated HTML and GWT

2013-05-30 Thread David
Hi, The HTMLPanel accepts HTML snippets, you should not put and entire HTML page in it since it is part of the window document. So what you are doing is correct. Otherwise you will have to play with Frames (which you should avoid due to memory leak issues). For the second question: the HTMLPanel

Re: Timezone difference issue

2013-05-30 Thread David
Hi, The question was indeed directed to the OP :-) David On Wed, May 29, 2013 at 5:27 PM, Andy wrote: > Hi David, > > I can't tell if you're asking me or the OP, but I'll tell you what we're > doing it and I believe it is what Kedar should be doing. > > The UTCDateBox implements HasValue and w

GWT Logging

2013-05-30 Thread Vikas Pandit
Hi All, How can i write log message in a file (/WEB-INF/logs) in GWT? it seems log4j is not supported but then i wrote a servlet (to be loaded when application starts to load my custom "logging.properties"(from /WEB-INF/classes/logging.properties)

Re: Spell checking implemention for TextArea

2013-05-30 Thread tirupati . b
Hi PhiLho Thank you for your replay I am using TextArea as popup window , need to check spelling automatically on the editor screen before submit the form Thank you Tirupati On Wednesday, May 29, 2013 9:46:54 PM UTC+5:30, PhiLho wrote: > On 29/05/2013 10:59, tirup...@gmail.com wrote:

Gwt error while trying to delete element from parent

2013-05-30 Thread Phanindra Vuppalapati
Below is my code FlexTable form = new FlexTable(); form.getElement().removeFromParent(); form.removeFromParent(); 16:27:32.490 [ERROR] [gipp.map.MapViewer] Uncaught exception escaped com.google.gwt.core.client.JavaScriptException: (TypeError): this.removeChild is not a function fileNa

Wrong UTF-8 string parsing in GWT JSON

2013-05-30 Thread Tibor Szolnoki
Hi, my stack is overflow :):):):) I can't find the solution... I'm developing a server-client application. My GWT client running in browser. Communicate with my C++ server by: GWT-JSON -> lighttpd -> libfcgi -> cgicc -> libjson -> C++ application My problem: The server response with a JSON strin

GWT logging

2013-05-30 Thread Vikas Pandit
HI All, I was trying to find a way to write a log messages in file in GWT application. I started with Log4j but then i found it's not supported by GWT and then moved onto java.uitl.Logger. I configured a servlet to load as the application start and load custom "logging.properties" from this ser

Re: GWT Logging

2013-05-30 Thread Thomas Broyer
On Thursday, May 30, 2013 9:33:55 AM UTC+2, Vikas Pandit wrote: > > Hi All, > How can i write log message in a file (/WEB-INF/logs) in GWT? it seems > log4j is not supported but then i wrote a > servlet (to > be loaded when application starts to l

Re: Gwt error while trying to delete element from parent

2013-05-30 Thread David
Hi, What are you trying to achieve with this code ? You should not be using the Element.removeFromParent directly since the FlexTable widget depends on it to be consistent. The form.removeFromParent can be used, but in this case the form widget is not attached to your document so you don't need t

Re: Fixing a column in DataGrid

2013-05-30 Thread Raphael André Bauer
On Wed, May 29, 2013 at 7:24 PM, Jens wrote: > Before deep diving into DataGrid, I think my first "make it work" approach > would be to just use two DataGrids and add both to the same DataProvider, so > that their data is in sync with each other. The first one would contain the > static x columns

GWT 2.5.1 integration with Autocomplete Google Places

2013-05-30 Thread Ignacio Cañon
Hi all, I've made a little googling about this subject but seems that all info I get is a little obsolete... I'm developing a GWT application that should use the known google autocomplete functionallity in a suggestBox in order to help the user to find an Address (i.e passing previously the cou

How to set title of an iframe generated by GWT

2013-05-30 Thread Arindam Das
Hi GWT compiles and put things inside an iframe. But if I want to set title of that iframe how to do that? The reason behind this is accessibility standard which demands a meaning title of an iframe. Thanks in advance. -- You received this message because you are subscribed to the Google Group

Sharing styles between uibinders declarations

2013-05-30 Thread Thomas Lefort
Hi, I am trying to do something that I believe should be possible. I am defining in one widget a number of css rules which I would like to share with another widget. I could make those rules available using @external but I'd rather not. What I would like to do is to export those rules to my wi

Re: How to set title of an iframe generated by GWT

2013-05-30 Thread Thomas Broyer
On Thursday, May 30, 2013 1:08:09 PM UTC+2, Arindam Das wrote: > > Hi GWT compiles and put things inside an iframe. But if I want to set > title of that iframe how to do that? > The reason behind this is accessibility standard which demands a meaning > title of an iframe. > I must say I don't

Re: How to set title of an iframe generated by GWT

2013-05-30 Thread David
Maybe he is not aware, that the IFrame he mentioned does not display any GUI, it just contains the javascript sources. The UI is not rendered in that IFrame but in the main window instead. David On Thu, May 30, 2013 at 1:37 PM, Thomas Broyer wrote: > > > On Thursday, May 30, 2013 1:08:09 PM UTC

Re: Sharing styles between uibinders declarations

2013-05-30 Thread Thomas Broyer
On Thursday, May 30, 2013 1:29:46 PM UTC+2, Thomas Lefort wrote: > > Hi, > > I am trying to do something that I believe should be possible. > > I am defining in one widget a number of css rules which I would like to > share with another widget. I could make those rules available using > @extern

Re: instance or class?

2013-05-30 Thread Blake McBride
Solved my problem and answered my question as follows: 1. The multi-user problem I was having was unrelated to GWT or Sencha but simply a bug in my program. So neither GWT nor Sencha has a multi-user issue that I am aware of. 2. With respect to the class or instance question, I discovered the

Re: Sporadic error with GWT and GAE

2013-05-30 Thread Marco
Dear all, this error appeared again...cannot understand why. Could help me? Do you have any advice? Thank you, Marco. On Tuesday, May 28, 2013 5:57:12 PM UTC+2, Marco wrote: > > Dear all, > I have developed an application in GWT that is running on GAE and I am > receiving sporadic error like th

Re: Sharing styles between uibinders declarations

2013-05-30 Thread Thomas Lefort
Thanks Thomas, I gather that it is not possible then. I will follow your advice. Still I think it could be a nice to have feature. Do you think it is worth to put a request for that? On Thursday, 30 May 2013 13:42:39 UTC+2, Thomas Broyer wrote: > > > > On Thursday, May 30, 2013 1:29:46 PM UTC+

Re: Sporadic error with GWT and GAE

2013-05-30 Thread Jens
A POST has done to your GWT-RPC servlet but the POST body is empty. If that happens then GWT will throw this exception, because without any body data/payload it can't do anything. Now you have to find out where these empty requests came from. They will probably not send by GWT itself. Maybe it

Re: GWT 2.5.1 integration with Autocomplete Google Places

2013-05-30 Thread Jonas
I can recommend this library: https://github.com/branflake2267/GWT-Maps-V3-Api It is a Java wrapper around the Google maps v3 JavaScript API. Here is a showcase of features: http://gonevertical-apis.appspot.com/ If you scroll down there is an example with autocomplete with places. Here is the co

Re: Sharing styles between uibinders declarations

2013-05-30 Thread Thomas Broyer
On Thursday, May 30, 2013 3:06:40 PM UTC+2, Thomas Lefort wrote: > > Thanks Thomas, > > I gather that it is not possible then. I will follow your advice. > > Still I think it could be a nice to have feature. Do you think it is worth > to put a request for that? IMO, no. exists only so you do

Re: Wrong UTF-8 string parsing in GWT JSON

2013-05-30 Thread Philippe Lhoste
On 30/05/2013 08:49, Tibor Szolnoki wrote: Hi, my stack is overflow :):):):) I can't find the solution... I'm developing a server-client application. My GWT client running in browser. Communicate with my C++ server by: GWT-JSON -> lighttpd -> libfcgi -> cgicc -> libjson -> C++ application My p

Re: Dynamically generated HTML and GWT

2013-05-30 Thread Mike Dee
Thanks for pointing me in the right direction. One last question. How is the form submission handled? Is a servlet needed? In this case, the form will simply save any changes (to a db) and redisplay itself. Thanks, Mike -- You received this message because you are subscribed to the Google

Re: GWT issue tracker spring cleaning

2013-05-30 Thread Ed
What means exactly "AssumedStale"? What are the plans for issued marked as "AssumedStale"? Idea: issue tracker glossary... -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, se

Re: Get Data CellTable

2013-05-30 Thread sebastien . ribeil
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 : > > Hi everyone, > I have a simple CellTable with editable cells. I add a button "save" > outside of the table. So, I want to be able to save the ch

CSS3 Animation/Transition plans?

2013-05-30 Thread Ed
What are the CSS3 Animation/Transition? I mean: will there be a kind of browser independent "CSS3 Animation/Transition" API? (when/how/where?) I understand that m-gwt will be part of the gwt core and m-gwt has some cool CSS3 Animation/Transition. I am asking this such that we can make our own pl

What are the CSS3 Animation/Transition plans?

2013-05-30 Thread Ed
What are the CSS3 Animation/Transition plans? I mean: will there be a kind of browser independent "CSS3 Animation/Transition" API? (when/how/where?) I understand that m-gwt will be part of the gwt core and m-gwt has some cool CSS3 Animation/Transition. I am asking this such that we can make our

Re: GWT issue tracker spring cleaning

2013-05-30 Thread Jens
> > What are the plans for issued marked as "AssumedStale"? If the issue owner does not respond with something like "hey this issue still exists in GWT 2.5" then this issue won't be tackled I guess. Daniel simply can't verify all the old, open issues, but the issue owner and everyone who star

Re: GWT issue tracker spring cleaning

2013-05-30 Thread Ed Bras
A, that explainss Thanks, it's difficult to understand "these thoughts" through a piece of "paper". On Thu, May 30, 2013 at 8:30 PM, Jens wrote: > What are the plans for issued marked as "AssumedStale"? > > > If the issue owner does not respond with something like "hey this issue > sti

Re: GWT issue tracker spring cleaning

2013-05-30 Thread Ed Bras
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 happens in X weeks);) On Thu, May 30, 2013 at 8:33 PM, Ed

Re: RichTextArea how to implement native Drag & Drop?

2013-05-30 Thread dhoffer
When I try for a pure GWT solution by adding all the drag/drop listeners to the RichTextArea I get the enter, a few overs, and then strangely I get the leave event. The drop event never occurs. How can I fix this? If I can get the onDrop event to fire it seems I could do the same work I was d

Re: Wrong UTF-8 string parsing in GWT JSON

2013-05-30 Thread Tibor Szolnoki
Dear Philippe, Thank you for the post, > String response="{ \"test\" : \"\\u00C3\\u0081\\u00C3\\u0089\\u00C5\\u00B0\" }"; > > //"���" in UTF-8 > > No. That's not UTF-8, that's UNC encoding. It results in Java's UTF-16 > encoding. > But "\u00C3\u0081" why not UTF-8 encoding? Se