Re: How to use external JS from GWT?

2010-09-09 Thread Zack Grossbart
You are having a timing problem that is common for GWT. Consider how this would work in pure JavaScript. 1. The page loads 2. The external JavaScript files load 3. The page renders 4. Your JavaScript code is called and you make your field alphanumeric. With GWT the order of operations changes.

Re: How to use external JS from GWT?

2010-09-09 Thread Zack Grossbart
In your example, where and how do you include the jQuery UI datepicker widget? I defined them in the HTML file containing my GWT code. Just a simple JavaScript reference the same way I would in any other HTML page. -- You received this message because you are subscribed to the Google Groups