Re: How to style MenuBar in CSS

2010-10-07 Thread Christian Voigt
Try this:Override style "gwt-MenuItemSeparator" e. g..gwt-MenuItemSeparator { Display: none;}WEB.DE DSL Doppel-Flat ab 19,99 /mtl.! Jetzt auch mit gratis Notebook-Flat! http://produkte.web.de/go/DSL_Doppel_Flatrate/2 -- You received this message because you are subscribed to the Google Groups

Re: Is it possible to inject module-name-nocache.js on demand?

2008-09-08 Thread Christian Voigt
Another google search brought the answer: http://www.pathf.com/blogs/2007/08/bjax-a-quick-ha Problem is the use of onload and of document.write in the bootstrapping process. Haven't found this the first time because I did not look for Using GWT with Bookmarklets. It would be great if there were

Is it possible to inject module-name-nocache.js on demand?

2008-09-05 Thread Christian Voigt
Hi! I would like to load my GWT app on demand by appending a script element to my html file. This is what I have done: 1. Create a simple module with Window.alert(Hello World!); 2. add add-linker name=xs to the module's xml (I have also tried sso, but that does not work either) 3. write a simple

Re: Is it possible to inject module-name-nocache.js on demand?

2008-09-05 Thread Christian Voigt
ups, small mistake. the script I tested is: var loadGWT=function(){ var fileref=document.createElement('script'); fileref.setAttribute(type,text/javascript); fileref.setAttribute(language,javascript); fileref.setAttribute(src, module-name.nocache.js);