I was looking for a component similar to the Android Toast notification for GWT (I Googled long enough and I know that there is Ext-GWT that has something similar, but I want to avoid external libraries). It seems that NotificationMole is the component I'm looking for, and that this component is available in GWT 2.1. However, when I try to show it in my application, it never appears. Has anyone used this component? Here is an example of how I use it:
NotificationMole nm = new NotificationMole(); nm.setAnimationDuration(2000); nm.setTitle("Title"); nm.setHeight("100px"); nm.setWidth("200px"); nm.setMessage("Test message to be shown in mole"); nm.show();
dstefanox
source share