Re: Google Calendar embeded in my webapp

2009-04-30 Thread LFCPD
there are some bugs. On Wed, Apr 29, 2009 at 11:20 AM, LFCPD laieta.hip.hop...@gmail.com wrote: Hi all, I'd like to embed a google calendar into my webapp. Is it possible? The server side of my webapp will add/remove events from that google calendar and anything else. Does exist some Google

Google Calendar embeded in my webapp

2009-04-29 Thread LFCPD
Hi all, I'd like to embed a google calendar into my webapp. Is it possible? The server side of my webapp will add/remove events from that google calendar and anything else. Does exist some Google Calendar widget? thanks you all! --~--~-~--~~~---~--~~ You received

Can I add a Yahoo! Map to my GWT application

2009-04-16 Thread LFCPD
Hi! Can I add a Yahoo! Map to my GWT application? I've been looking around and it seems that there'n no api for java to insert a yahoo map to the code. Thanks! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google

Add a Yahoo! calendar and Yahoo! maps into my webapp

2009-04-14 Thread LFCPD
Hi all, i'd like to insert a Yahoo! maps and a Yahoo! calendar to my application. Do you know if some api exists like google maps api but from yahoo? Thank you very much! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

How to know if my application is running in Firefox or in IE or in any other browser

2009-01-21 Thread LFCPD
Hi all, I'd like to know if it is possible to know in which browser is running an application web. For example, in the code write something like this: String actualBrowser = GWT.getBrowser(); if (actualBrowser == firefox) { do this; } else if (actualBrowser == ie) { do that; } else {

Re: How to know if my application is running in Firefox or in IE or in any other browser

2009-01-21 Thread LFCPD
I'll try to explain in detail what my application does: I have this problem in a form that must be filled, and the TextArea is in this form (form1). The TextArea is filled using another form (form2). The form2 is opened when a button in the form1 ('Add') is clicked. In the form2 there are two

Re: How to know if my application is running in Firefox or in IE or in any other browser

2009-01-21 Thread LFCPD
Look at the following image to follow the explanation: http://www.picoodle.com/view.php?img=/3/1/21/f_formsm_8ebd0b5.jpgsrv=img32 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

Re: How to know if my application is running in Firefox or in IE or in any other browser

2009-01-21 Thread LFCPD
It was my last option... make another ListBox. Is it the only solution? Why IE recognizes \n and Firefox not? I can't believe it! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

Re: Problems with newline symbol in a TextArea (works in IE but not in Firefox)

2009-01-19 Thread LFCPD
Hi, Below is attached the code I use: First of all, I fill in the text of the textArea as follows (targetsSelected is a listBox): String txt = ; for (int i = 0; i targetsSelected.getItemCount(); i++) txt += (targetsSelected.getItemText(i) + \r\n); TextArea ta = new TextArea();

Problems with newline symbol in a TextArea (works in IE but not in Firefox)

2009-01-12 Thread LFCPD
Hi all, In my application I insert a newline symbol in a textArea like follows: TextArea ta = new TextArea(); ta.setText(1.1.1.1\n1.1.1.2\n1.1.1.3); And in IE it appears like follows inside the TextArea (and is correct like this): 1.1.1.1 1.1.1.2 1.1.1.3 Later, in my application I have to