AJAX crawling scheme

2012-12-23 Thread Danny
Hey guys, I've read over at https://developers.google.com/webmasters/ajax-crawling/docs/getting-startedthat in order to make a GWT app more SEO-able, that we simply replace the original # with #! in all of our URLs. I can't figure out the best way to do this though in an Activities and Places

RPC fails when in production mode if using Oracle JDK 7

2012-11-23 Thread Danny
Hi guys, Here's my configuration: - Mac OS X 10.7 - JDK 7 (OS Default) - using Oracle JDK - GWT 2.5 I've simply created a project using the GPE (i.e. GreetingService etc). I make no changes to the GPE created starter code. The default java version on my Mac is set to Oracle's JDK 7.

Re: Super Dev Mode : Cannot get module to compile with -workDir

2012-06-14 Thread Danny Kirchmeier
post the thread dump and file a bug report. --Danny -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/K5uDPPexW7AJ. To post to this group, send email

Super Dev Mode : Cannot get module to compile with -workDir

2012-06-11 Thread Danny Kirchmeier
I'm trying out the new Super Dev Mode from the trunk. While I can get the codeserver to compile the module normally, it hangs when I specify -workDir. Am I doing something wrong, or do I need to file a bug report? Ant Target: target name=codeserver depends=javac description=Run development

Re: Using DockPLayoutPanel - can I get an autoexpanding south widget?

2011-11-09 Thread Danny Kirchmeier
Now, my initial instinct is to somehow try and determine whether or not the FlowPanel needs to vertically resize (how do I determine this? Can it be determined?) and then use DockLayoutPanel.setWidgetSize to perform the resizing manually. Sounds like a good approach. On the bottom

Re: Basic JavaScript onClick not getting called from inside GWT richTextarea

2011-11-09 Thread Danny Kirchmeier
No idea. Seems to me that you should be using an Anchor and ClickHandlers instead of that native method, but I may not understand exactly why you need that. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the

Re: MenuBar - how can I cause it to wrap?

2011-11-09 Thread Danny Kirchmeier
The MenuBar uses a table, with each item being a table cell. AFAIK, you're not going to have any luck getting that to wrap. You should be able to check to see if any of the items are flowing out of the window and have those move themselves into a More menu item. -- You received this message

Re: How to determine *at runtime* which permutation is used?

2011-11-09 Thread Danny Kirchmeier
You can use GWT.getPermutationStrongName()http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/core/client/GWT.html#getPermutationStrongName() You can choose to write that to the screen like so RootPanel.get().add(new Label(GWT.getPermutationStrongName())); -- You

Re: CellList grid

2011-11-07 Thread Danny Kirchmeier
It's a bit of a hack, but since the cell list is just a list of Divs, you can use the CSS3 columns (but watch out, IE9 doesn't support this, and only the most recent version of opera does) public void setColumns(int columns) { if(columns 1) columns = 1; Style style =

Re: Basic JavaScript onClick not getting called from inside GWT richTextarea

2011-11-07 Thread Danny Kirchmeier
Did you ever call exportMyFunction2? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/t3GfHd8ZwxsJ. To post to this group, send email to

Re: Ok, CssResources and ClientBundle, what am I doing wrong?

2011-11-04 Thread Danny Kirchmeier
Does your Style1.css now say this: @external .gwt-Button; .gwt-Button{ background: black; color: cyan; } Don't forget the semicolon at the end of the @external line. I forgot it the first few times I used it. It causes no error to be thrown and next style to be completely ignored. It worked

Re: Possible to get HTML from a widget?

2011-11-03 Thread Danny Kirchmeier
/client/ui/UIObject.html#getElement() and from that element you can call element.getString()http://google-web-toolkit.googlecode.com/svn/javadoc/2.4/com/google/gwt/dom/client/Element.html#getString(), which will get you the full html, including it's own tag. -- Danny -- You received

Re: can I use Class.forName and newInstance in GWT ?

2010-12-30 Thread Danny Goovaerts
yourself the question if GWT is the technology to use. Regards, Danny On 30 dec, 09:11, Didier Durand durand.did...@gmail.com wrote: Hi, You can't: if you go tohttp://code.google.com/webtoolkit/doc/latest/RefJreEmulation.html#Pac... for Class, you will see that forName() is not emulated

No GWT support found for this system.

2010-09-09 Thread danny
OS: MacOS 10.6.4 Eclipse: Eclipse IDE for SOA Developers Version: Helios Release Build id: 20100617-1415 GWT: 2.0.4 I get the following error when attempting to open with windowbuilder editor: No GWT Support found for this system The product can't find support for the OS, OS architecture or

Is GWT application gallery still maintained?

2010-08-04 Thread Danny Goovaerts
I've uploaded my application on http://gwtgallery.appspot.com/ more than a week ago and it still does not have appeared in the gallery. The most addition dates from June 7. Is this gallery still maintained? Thanks, Danny www.cellamea.eu -- You received this message because you are subscribed

Re: Ecryption best practices (server side, client side, password handling)?

2010-08-02 Thread Danny Goovaerts
with something that is solid enough. I personally would not trust any security measure that has not been published and analysed by the security and encryption community. Danny www.cellamea.eu On 1 aug, 17:06, Stefan Bachert stefanbach...@yahoo.de wrote: Hi Sven, i did have similar thought in the past

Re: XML Validation directly

2010-07-29 Thread Danny Goovaerts
I use saxon from Michael Kay (www.saxonica.com) for programmatic XML validation. It's very good, but it does not proivided much more detailed error messages. You mention that you need this during development time. Do you want to validate XML files that you construct by hand before using them in

Re: Do we have any Library for OpenID autentication(Authentication using Google accounts/Face book etc.)

2010-07-29 Thread Danny Goovaerts
I've implemented support for openID with special case for Google and Yahoo mail (www.cellamea.eu). I've written a servlet that uses openid4java to interact with the openid providers. I can make the code available. On this moment, it's not packaged in an isolated way, so it's not usable out of the

GWT service to manage your wine cellar on line

2010-07-26 Thread Danny Goovaerts
to build this! Have fun! Danny Goovaerts www.cellamea.eu www.oobikwe.eu -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email

Re: Mixed content warning on Chrome (skull and bones)

2010-07-15 Thread Danny Goovaerts
. Speedtracer shows From cache :false but I do find the components in the cache. I don't know how the mobile browser handle it, but the js files are probably too big anyway to be cached. Danny On 14 jul, 22:30, lineman78 linema...@gmail.com wrote: Agreed, I had not thought of the caching issue

Mixed content warning on Chrome (skull and bones)

2010-07-14 Thread Danny Goovaerts
on Chrome or do should I do something different? Thanks in advance, Danny -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email

Re: Mixed content warning on Chrome (skull and bones)

2010-07-14 Thread Danny Goovaerts
are sending doesn't contain any sensitive data, therefore this is a desired behavior as usually there is not real reason not to make a request once an SSL session has been established because at that point a symmetric block cipher is used which has very little overhead. On Jul 14, 10:17 am, Danny

Re: the button and its infoLabel problem...

2010-07-13 Thread Danny Goovaerts
I think that you need a deferred command to handle this. Limit your clickhandler to set the infoLabel to Beginning and then launch a deferred command who's execute method performs the search and then updates the label. In this way, the execution thread will finnish, causing the screen to be

Re: GWT and CSS

2010-06-16 Thread Danny Goovaerts
for detailed descriptions, much better that I could do here) - mark your style definition as !important, for example, that's how I override the settings for .gwt-button .authenticate-button { background: white none !important ; margin:2px !important; } Danny On Jun 16, 8:54 pm, Magnus alpineblas

Re: ClickHandler not called on second click

2010-06-03 Thread Danny Goovaerts
I have filed an issue 4993 for this in the issue tracker. On Jun 2, 9:37 pm, Danny Goovaerts danny.goovae...@gmail.com wrote: I managed to isolate the code in a few classes which reproduce the problem. Can I upload a zipfile (15k) somewhere? On Jun 2, 5:27 pm, Olivier Monaco olivier.mon

Re: ClickHandler not called on second click

2010-06-03 Thread Danny Goovaerts
if it already is enabled. For reference : see issues http://code.google.com/p/google-web-toolkit/issues/detail?id=2885q=button%20click%20twice and http://code.google.com/p/google-web-toolkit/issues/detail?id=4992q=clickhandler%20pushbutton On Jun 3, 8:52 am, Danny Goovaerts danny.goovae...@gmail.com

Re: ClickHandler not called on second click

2010-06-02 Thread Danny Goovaerts
the real root cause. Danny On Jun 1, 6:21 pm, Danny Goovaerts danny.goovae...@gmail.com wrote: My application is quite large. The button is several levels deep, i.e. in a FlowPanel which itself is in a HorizontalPaneI in a hierachy of divs. I will try to isolate while still reproducing

Re: ClickHandler not called on second click

2010-06-02 Thread Danny Goovaerts
I managed to isolate the code in a few classes which reproduce the problem. Can I upload a zipfile (15k) somewhere? On Jun 2, 5:27 pm, Olivier Monaco olivier.mon...@free.fr wrote: Danny, What your click handler does? May be it puts some (transparent) element in front of the button... How do

Re: Getting the default DateBox() picker to advance year at a time

2010-06-02 Thread Danny Goovaerts
numMonths) { model.shiftCurrentMonth(numMonths); picker.refreshComponents(); } } Danny On Jun 2, 8:31 pm, Jim Douglas jdoug...@basis.com wrote: No, it's not possible, short of writing a custom DatePicker.  You might want to vote for this open issue: http

ClickHandler not called on second click

2010-06-01 Thread Danny Goovaerts
that describe a similar behaviour (e.g. http://groups.google.com/group/google-web-toolkit/browse_thread/thread/aa9ce024e173390e/65802ce6da9482e7?lnk=gstq=second+click#65802ce6da9482e7) but none have a solution. Any idea how to solve this? Thanks in advance, Danny -- You received this message

Re: ClickHandler not called on second click

2010-06-01 Thread Danny Goovaerts
to move the mouse from the page to Eclipse, which prevents from reproducing the error. Danny On Jun 1, 4:17 pm, Ranjan ranjan.n...@gmail.com wrote: Something like that should not have gone unnoticed for so long. Could you post your code snippet? On Jun 1, 12:07 pm, Olivier Monaco olivier.mon

Re: Facing problem tackling browser refresh

2010-04-20 Thread Danny Goovaerts
I faced exactly the same problem (see http://groups.google.com/group/google-web-toolkit/browse_thread/thread/36979a4e8e51fdc5# ) I concluded that in case of a refresh, the async call is cancelled in the browser before it has concluded. I solved the problem by waiting until the onSuccess() of the

Re: Async RPC during CloseHandler.onClose() cancelled?

2010-04-17 Thread Danny Goovaerts
Moving the reload to the onSuccess is a good suggestion. Thanks! On 16 apr, 18:12, Thomas Broyer t.bro...@gmail.com wrote: On Apr 16, 5:44 pm, Danny Goovaerts danny.goovae...@gmail.com wrote: In the application that I'm building  I've implemented a CloseHandler.onClose() which saves

Async RPC during CloseHandler.onClose()

2010-04-16 Thread Danny Goovaerts
I've implemented a CloseHandler to makes an async call to the server to store the loc -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group,

Re: Unable to migrate GWT application to version 2.03 due to problem with internationalization

2010-03-19 Thread Danny Goovaerts
es_GTC is normally not a valid locale. The country part of a locale is the two character ISO country code. GTC is not a valid country code. A reason might be that GWT 1.5 was not strict about the country code format, and that 2.0 is much stricter. Danny On 19 mrt, 14:28, craige craige.be

Re: How do I use my own server in hosted mode instead of GWT's built-in Jetty instance?

2009-12-10 Thread Danny Goovaerts
mode without the built in server. It all depends what you need to investigate. Danny P.S. 2.0 is great. Thanks to everyone who contributed! On 10 dec, 21:40, Henry q8e...@gmail.com wrote: How do I use my own server in hosted mode instead of GWT's built-in Jetty instance? In the plugin, I found

Re: Tomcat RPC Failure on Lost Client Connections.

2009-11-17 Thread Danny
t.dave, I am using 1.7. Though it is no solution, your having this same problem is some comfort. If enough of us are in the same boat, maybe one of us will eventually find a solution. Thanks, Danny On Nov 17, 12:15 am, t.dave da...@lorgeousdays.com wrote: there's a bit of content on the web

Re: GWT Hosted Mode crashing after Snow Leopard 10.6.2 Update

2009-11-16 Thread Danny
Hi, Is there also a fix available for GWT 1.6+ ? My Eclipse project gives an error saying that the when using the WAR layout you must use the GWT 1.6 or later. Thkx, D. On Nov 14, 4:10 pm, hugues huguespisa...@gmail.com wrote: On 12 nov, 18:39, hugues huguespisa...@gmail.com wrote: On 12

Tomcat RPC Failure on Lost Client Connections.

2009-11-16 Thread Danny
the error. Can someone with more Tomcat experience than me, see if my belief is well founded? Regardless, does someone have a solution? My system seems to be running OK. Is my worry mostly about Tomcat filling my web host's disk space with exception messages? Thanks, Danny

IE8 and Compatibility View settings and ListBoxes

2009-11-14 Thread Danny
for 2.0 to generate ListBox code for all versions of IE? But, who knows what other inconsistencies we will find from mighty Microsoft? Thanks, Danny -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: Avoiding RPC Coming in to an inactive client from the server.

2009-10-13 Thread Danny
rjcarr, Hey! I was looking for some magic GWT answer, not good old programming logic. Thanks very much, Danny On Oct 13, 1:43 am, rjcarr rjc...@gmail.com wrote: Just keep a count of your service calls.  So, when your expiry timer rings, make sure you don't send out any more requests

Avoiding RPC Coming in to an inactive client from the server.

2009-10-08 Thread Danny
RPC call java.io.IOException... followed by a stack printout. Does anyone know how to relieve Tomcat of this burden and my having to dump its log file more frequently that I would like? Thanks, Danny --~--~-~--~~~---~--~~ You received this message because you

encodeResponseForFailure

2009-09-16 Thread Danny
Hi, trying to get my GWT Application running I get the next error. When the line ListAllianz allianzen = session.createQuery(SELECT id, kuerzel, name from gctool.allianzen).list(); is executed I geht the following error: Service method 'public abstract java.util.List

inherit modul for hibernate

2009-09-15 Thread Danny
Hello, I try to integrate hibernate into a GWT 1.6 project. I've done it with the help of: http://code.google.com/intl/de-DE/webtoolkit/articles/using_gwt_with_hibernate.html and used gilead. But when I run my application it says in the log: No source code is available for type

Designer

2009-09-09 Thread Danny
Guten Morgen! Das GWT setze ich schon einige Zeit (erfolgreich) ein, allerdings bisher ohne Designer. Um mir die Arbeit zu erleichtern, bin ich nun allerdings auf der Suche nach einen visuellen Designer für Oberflächen. Kann mir jemand eine empfehlen, die in Eclipse integriert ist und als

Frame Height 100%

2009-08-24 Thread Danny
with Javascript. I have tried to set the parents of my frame to height:100%, but have not met with success. I am not wild about using Javascript. Thanks, Danny --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google

GWT - JFreeChart Dependency in Terms Conditions

2009-08-13 Thread Danny Robinson
Please can someone explain why JFreeChart is listed as a 3rd party library for GWT in GWT's Terms Conditions page. Specifically, I need to understand if this is present as a dependency for development (like Jetty), or the JFreeChart stuff actually is present somehow in the javascript/compiled

Re: How to use the new WAR file to deploy a simple web application.

2009-04-30 Thread Danny
places. I guess I will continue as before. Danny On Apr 30, 4:52 am, doopa niallhas...@googlemail.com wrote: For testing purposes I use tomcat to serve the static and dynamic portions of the application. To do so, I follow the example from GWT:http://code.google.com/docreader/#p=google-web

Re: How to use the new WAR file to deploy a simple web application.

2009-04-30 Thread Danny
Thanks everyone. I now see that this is a web feature. When I saw the new GWT 1.6 war file construction and eclipse plugin, I thought my deployment life was getting rosier. Maybe later. When I have gotten my project deployment where I want it, I will post my resultd. Regards, Danny On Apr

How to use the new WAR file to deploy a simple web application.

2009-04-29 Thread Danny
GWT module ROOT, would this work, or does someone have a better idea. Thanks, Danny --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to Google-Web-Toolkit

GWT 1.6 Replacement for Radio Button setChecked().

2009-04-24 Thread Danny
setChecked() seems to be depreaciated by GWT 1.6. What replaces this action? Thanks, Danny --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to Google-Web

Re: GWT 1.6 Replacement for Radio Button setChecked().

2009-04-24 Thread Danny
Thanks much. On Apr 24, 2:12 pm, Jason Essington jason.essing...@gmail.com wrote: setValue() On Apr 24, 2009, at 12:09 PM, Danny wrote: setChecked() seems to be depreaciated by  GWT 1.6.  What replaces this action? Thanks, Danny

GWT 1.6, Google App Engine, and java.awt.image.*

2009-04-22 Thread Danny
, even when I remove the App Engine SDK. Any suggestions? Danny --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to Google-Web-Toolkit@googlegroups.com

Re: GWT 1.6, Google App Engine, and java.awt.image.*

2009-04-22 Thread Danny
, and Eclipse did stop complaining. I hope this works in the end. Thanks, Danny On Apr 22, 8:15 pm, Ben FS ben.su...@gmail.com wrote: Client-side: GWT lets you use Java language, but only a sub-set of the J2SE library, supplemented by a variety of GWT-specific UI classes. Server-side: You can

Upgrade 1.5.3 to 1.6.4 - 404 Error

2009-04-19 Thread Danny Schimke
updated all the things according the docs... Where is the problem, I have no idea. Hope someone can help Thanks a lot! -Danny --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group

Re: Acces to GWT JavaDoc in Eclipse

2009-04-01 Thread Danny Schimke
Hi Stefan! You are right: I've removed gwt-servlet from the POM dependencies of the corresponding project, because I don't need it yet. If I need this I will create a separate server/backend- project which does. And now I have access to the JavaDoc. Thank you very much! -Danny 2009/4/1 Stefan

Re: FlexTable : how to get not wrapping text functionality

2009-03-30 Thread Danny Schimke
Hi Suren! I dont know why this is not working, but you can use a Label, set the word wrap of the label to false and add this label to one of your FlexTable's cell. This should work. -Danny 2009/3/30 Suren nsurendi...@gmail.com Hi All, I am using FlexTable in a grid format to display text

Re: FlexTable : how to get not wrapping text functionality

2009-03-30 Thread Danny Schimke
the no-wrap CSS class to each td element. .non-wrapping-table tr td { white-space: nowrap; } hope that will help... -Danny 2009/3/30 Suren nsurendi...@gmail.com Hi Danny, Thanks for the reply. I should have mentioned earlier that, I 've tried that option too. that is, I set the text

Event listening on ListBox in a CaptipnPanel's Legend

2009-03-26 Thread Danny Schimke
Hello! A CaptionPanel can contains HTML in its legend. I hve to add a ListBox- Element there. But I have to listen on it (change- events). How do I have to add the ListBox as a part of the legend- Element to the Caption so that I still can listen on its events? Thank you very much! -Danny

Re: Event listening on ListBox in a CaptipnPanel's Legend

2009-03-26 Thread Danny Schimke
Is it possible to do this? 2009/3/26 Danny Schimke schimk...@googlemail.com Hello! A CaptionPanel can contains HTML in its legend. I hve to add a ListBox- Element there. But I have to listen on it (change- events). How do I have to add the ListBox as a part of the legend- Element

Re: Set CSS for ListBox Items working in Firefox not in Safari

2009-03-24 Thread Danny Schimke
- issue... I dont know how to fix this. -Danny 2009/3/24 Shashi Kant kant.shash...@gmail.com Oh you are using an image. I dont think IE supports that. ,This reason behind this is because of how IE gets the base for the HTML Select tag - it's derived from the Win32api - the same reason why dropdown

Re: Set CSS for ListBox Items working in Firefox not in Safari

2009-03-23 Thread Danny Schimke
... there should be a way to refresh GWT- components on view. -Danny 2009/3/23 priya joshipriya...@gmail.com Hi all, I have one ListBox in my GWT application. I want to set CSS for some of the items in this ListBox.. I am using following code for this: DOM.getChild(listBox.getElement

ReplacementString support for MultiWordSuggestOracle for 1.6

2009-03-22 Thread Danny Goovaerts
I want to usereplacementString with Issue 2695 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to Google-Web-Toolkit@googlegroups.com To unsubscribe from

Re: ReplacementString support for MultiWordSuggestOracle for 1.6

2009-03-22 Thread Danny Goovaerts
? Thanks (not just for answers to this post but for the tremendous tool that GWT is) Danny On 22 mrt, 20:56, Danny Goovaerts danny.goovae...@gmail.com wrote: I  want to usereplacementString with  Issue 2695 --~--~-~--~~~---~--~~ You received this message because you

How to sort a list with objects on client side?

2009-03-19 Thread Danny Schimke
escaped java.lang.UnsupportedOperationException: null at com.incowia.tkbase.unternehmenspflege.core.client.BaseReferenceList.toArray(BaseReferenceList.java:166) at java.util.Collections.sort(Collections.java:158) What have I to do, to sort my list? -Danny

Re: gwt mix content with style?

2009-03-19 Thread Danny Schimke
You could do something like this: Style style = tmpElement.getElement().getStyle(); style.setProperty(border, 1py solid #00;); -Danny 2009/3/19 Coonay fla...@gmail.com like old html,gwt mix content with style again? in gwt ,most dynamic UI element have to set style with addStyleName

Re: ResourceBundle for client??

2009-03-18 Thread Danny Schimke
Is the Constants- Interface of GWT the thing, what you are searching for? With this you can read the values from a properties- file -Danny 2009/3/17 joe young keven.c...@gmail.com Can client code able to use java.util.ResourceBundle? I have some information in a propertie file and I don't

DialogBox's height not based on its content

2009-03-17 Thread Danny Schimke
large and that seems not pretty. How can I fix this? -Danny --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to Google-Web-Toolkit@googlegroups.com To unsubscribe

Re: Java Script Datei

2009-03-10 Thread Danny Schimke
helfen... Grüße -Danny On Mar 10, 7:45 am, Eva loesch@googlemail.com wrote: Ich würde gerne die von GWT automatisch gererierte Java Script Datei einsehen. Wo finde ich diese? Ich habe auch gelesen, dass die Java Script Datei komprimiert ist, so dass man den Code nicht erkennen kann. Gibt

Re: Restrain the DialogBox to move out of browser window

2009-03-09 Thread Danny Schimke
() - this.getOffsetHeight()); } } The dialog window does not move out of the visible window area! Thank you very much Sumit! The idea of overriding the onMouse- Events is THE idea! -Danny 2009/3/5 Sumit Chandel sumitchan...@google.com Hi Danny, That shouldn't be the case. Which browser were you testing

Re: Restrain the DialogBox to move out of browser window

2009-03-05 Thread Danny Schimke
It does not work. The onMouseUp is never called... 2009/2/27 Sumit Chandel sumitchan...@google.com Hi Danny, Here's one possible solution - you could override the DialogBox.onMouseUp() method to re-position the dialog box depending on where it was when the user lets go of it. For example

Window.confirm in timer.run()

2009-03-04 Thread Danny Schimke
(e.g. when I am waiting three or more minutes) It should be not very difficult to use a workaround, but I want to understand the correct working of the GWT timer. Thank you! -Danny --~--~-~--~~~---~--~~ You received this message because you are subscribed

Re: Question about mGoogle Maps URL and its parameter gwt

2009-03-04 Thread Danny Schimke
Thank you very much! Good to know! -Danny 2009/2/27 Eric Ayers zun...@google.com Removing that parameter will not affect the functioning of the Maps API. It is currently used for accounting purposes only. 2009/2/27 Danny Schimke schimk...@googlemail.com: Hello! Does anyone know what

Re: Window.confirm in timer.run()

2009-03-04 Thread Danny Schimke
keeps generating timer event probably because that comes from the OS there's no locking in place user clicks on button next event is shown Instead do this: timer.schedule(1000); run() { showWindow() timer.schedule(1000); } On Wed, Mar 4, 2009 at 9:34 AM, Danny Schimke schimk

Re: Window.confirm in timer.run()

2009-03-04 Thread Danny Schimke
Yeah! I canceled the timer and restarted it in in the run() method... It is about the way you've advised me. Thanks again! -Danny 2009/3/4 Vitali Lovich vlov...@gmail.com Did that solve your problem? On Wed, Mar 4, 2009 at 12:35 PM, Danny Schimke schimk...@googlemail.comwrote: Thanks

Re: GWT Session

2009-02-27 Thread Danny Schimke
Hey Vagner Araujo! Thank you for your post! I've searched a long time for something like handling sessions in GWT!!! :D I have a question too. Waht's when the session invalidates (e.g. timeout)? Should there a heartbeat which checks the session validity? Thank you! -Danny 2009/2/27 Mahavir Jain

Question about mGoogle Maps URL and its parameter gwt

2009-02-27 Thread Danny Schimke
and why? Are there other possible values instead of 1 and what does they mean? Thank you! -Danny --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to Google

Re: Apply CSS in editor area of RichTextArea

2009-02-25 Thread Danny Schimke
? Is there anything special to watch? -Danny 2009/2/24 Danny Schimke schimk...@googlemail.com Hi Omer! 1. Yes I am using Windows and yes: Hosted Mode uses the installed IE. 2. The error occurs in compiled mode (Firefox, IE) too. I show a preview for multilingual text (english, german, french, etc

onLostFocus and onChanged not fired if browser-window is closing

2009-02-24 Thread Danny Schimke
fired event instead of multiple). -Danny --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to Google-Web-Toolkit@googlegroups.com To unsubscribe from this group

Re: Apply CSS in editor area of RichTextArea

2009-02-24 Thread Danny Schimke
. Any Idea, why the error occurs? Thanks! -Danny 2009/2/17 A Friend Of Yours omer.akh...@gmail.com Please try to maintain a single thread: http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/4e1d0c2a8ba725ef On Feb 17, 8:10 pm, Manish Kumar man...@oakdeneindia.com wrote

Re: Apply CSS in editor area of RichTextArea

2009-02-24 Thread Danny Schimke
font (If I am not mistaken!?). It does not look nice, when the editors text has a different font, than its preview... I hope I'll crack this in future ;) Thank you Omer!!! -Danny 2009/2/24 A Friend Of Yours omer.akh...@gmail.com Any Idea, why the error occurs? No; not really! If you could

Re: Restrain the DialogBox to move out of browser window

2009-02-23 Thread Danny Schimke
No idea? 2009/1/28 Danny Schimke schimk...@googlemail.com Hello! Is it possible to restrain the DialogBox to move out on right and bottom side of the browsers windows? When I move the box over it's header it should stay completely in the visible browser window area, because I disabled

Re: Changing color of text on fly.

2009-02-23 Thread Danny Schimke
, if the ListBox was drawing again on the screen after adding the class. -Danny 2009/2/20 Mani many...@gmail.com Hi, I have a list box which will populate values from database. Based on certain conditions, I need to display each value in appropriate color. How to change color of text? Here

Re: Google Map Info Window

2009-02-23 Thread Danny Schimke
! Hope it was helpful for you! -Danny 2009/2/20 Arend van der Veen arend.vanderv...@gmail.com Hi, I am using the gwt google map api. Previously, I had a hypertext link on a InfoWindow in Google Maps. This link loaded a new page. I am now trying to implement the same functionality in GWT

Searching another HTML editor

2009-02-09 Thread Danny Schimke
I am searched for. The possibilities of using the Toolbar and the way to edit it were not sufficient for me. Are there some other editors which can used by GWT? It should be able to bold, italic, underline text and set the font-size... Thank you! -Danny

Re: Script error in IE 7 in web mode

2009-02-06 Thread Danny Goovaerts
a limit on the size XML documents that it can handle. I will investigate further and post my findings. Danny On 5 feb, 16:45, Arend van der Veen arend.vanderv...@gmail.com wrote: Hi Danny, I had a similar problem when I was parsing an XML document.  In my case, I was a little careless about

Call event after an other

2009-02-05 Thread Danny Schimke
the onClick after other events have done their work by using a DeferedCommand. But is doesn't work. Saving is allways faster than the onChange. Is there a way to control the handling-order of events? Thank you! -Danny --~--~-~--~~~---~--~~ You received this message

Script error in IE 7 in web mode

2009-02-05 Thread Danny Goovaerts
is quite big, so it's not so easy to isolate the piece of code where it goes wrong. Thanks, Danny --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to Google-Web

Re: Call event after an other

2009-02-05 Thread Danny Schimke
comment this thread). But I need the possibility to wait starting onClick until onChange is running. -Danny 2009/2/5 Damien Picard picard.dam...@gmail.com Hi ! You can control event propagation with low-level functions (onBrowserEvent, Event) ; in your case, use the Event.cancelBubble function

Re: Hosted Mode not refreshing

2009-02-04 Thread Danny Schimke
If you are using Eclipse do a clean on your Project(s) und refresh them. Maybe it will help. -Danny 2009/2/4 gemmasilvers gemmasilv...@googlemail.com Yup, I cleared the IE cache and still no joy. Any other suggestions, please? Thanks! Gemma On Feb 3, 6:44 pm, Lupo tcantal...@gmail.com

Re: Bad link for GWT Documentation

2009-02-04 Thread Danny Schimke
I called the GWT docs and everything worked fine... 2009/2/4 Ricky eric.ca...@gmail.com Did you notice that the link to GWT docs is broken for weeks ! It does just redirect to the documentation of... Google Code documentation reader

Re: Check whether browser is supported

2009-02-03 Thread Danny Schimke
I forgot: I can use the noscript- tag in the html- sourcefile... That should work... I reply again to tell if everything worked well -Danny 2009/2/3 Danny Schimke schimk...@googlemail.com This was helpful. But is there a way to keep out browsers which does *not*support javascript like

Check whether browser is supported

2009-02-03 Thread Danny Schimke
Is there an easy way to check whether GWT supports a browser, for example in EntryPoint to tell the user, that the Browser is not supported? We've got a empty site if we browse our application in a not supported Browser. Thank you! -Danny

Re: Check whether browser is supported

2009-02-03 Thread Danny Schimke
...@gmail.com See this thread. We use this and it works well. http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/41ce4b44e0d4e262/abd93affd092bb47?lnk=gstq=profilercorporation#abd93affd092bb47 On Feb 3, 11:32 pm, Danny Schimke schimk...@googlemail.com wrote: Is there an easy way

Re: Button as hyperlink Look

2009-02-02 Thread Danny Schimke
Hi there! Use CSS, like this: .button-link { cursor: pointer; cursor: hand; border: none; /* Disable the button-style */ background-color: transparent; padding: 0px; color: #4784C3; text-decoration: underline; } this lets your button look like a hyperlink! - Danny 2009/2/2

Re: Button as hyperlink Look

2009-02-02 Thread Danny Schimke
Additional: search in GWT group for disable hyperlink their I posted this weeks ago. May there are more infos for you! - Danny 2009/2/2 Danny Schimke schimk...@googlemail.com Hi there! Use CSS, like this: .button-link { cursor: pointer; cursor: hand; border: none; /* Disable

Re: GWT-maps-api: Maps API has not been loaded

2009-02-02 Thread Danny Schimke
(This is an indication that the error only occurs in IE6). Since we have set the setting to use HTTP 1.1 over proxyconnections everything works fine. Now we can load and interact the map without problems in Internet Explorer 6. -Danny 2009/1/26 Eric Ayers zun...@google.com 1) Maybe there is a cache

Re: Button as hyperlink Look

2009-02-02 Thread Danny Schimke
This is a double post. look into your first post about the same thing. The answer is there ;) 2009/2/2 chandraj...@gmail.com chandraj...@gmail.com Hi All, How can I achieve a Button widget as hyperlink Look n feel. I don't want to use an anchor Link as it opens a browser functionality.

Toggle visibility of a PushButton

2009-01-30 Thread Danny Goovaerts
it? Thanks, Danny --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to Google-Web-Toolkit@googlegroups.com To unsubscribe from this group, send email to google-web

Restrain the DialogBox to move out of browser window

2009-01-28 Thread Danny Schimke
in a not viewed area. And second: in IE6 the DialogBox is only dragable by the text in it's header. Is there a clean way to allow IE6 users to dragdrop the box like in FF or IE7 over the complete header? Thank you very much! - Danny --~--~-~--~~~---~--~~ You

  1   2   >