Re: How to send an Email with GWT to a specific Address?

2011-03-13 Thread wingdings
To send an email message, an app prepares a MimeMessage object, then sends it with the static method send() on the Transport class. The message is created using a JavaMail Session object. The Session and the Transport work with the App Engine Mail service without any additional configuration.

add click handler to horizontalPanel in gwt

2011-02-08 Thread wingdings
how do i add click handlers to horizontalPanel ? it worked with the use of addDomHandler() but i had to downgrade GWT version for some other reasons , and GWT 2.0.4 doesnt support it i used to do it like this horizontalPanel.getWidget(1).addDomHandler(someClickHandler,ClickEvent.getType());

NoClassDefFoundError

2010-10-05 Thread wingdings
im getting this random error today i dont know why it was working better yesterday javax.servlet.ServletContext log: Exception while dispatching incoming RPC call com.google.gwt.user.server.rpc.UnexpectedException: Service method 'public abstract java.lang.Boolean

is there any proper way to create shortcut(s) for the current window object in gwt ?

2010-10-04 Thread wingdings
just for like CTRL+1 or CTRL+2 .. how do i assigns shortcuts ? something like this i did but it aint executing , also am i doing it right ? mayday mayday ! public class quotation implements KeyboardListener { public static Widget getSomeWidget() { return new Widget; } @Override        public