Re: Can't get Google Crawler to index my GWT-based site no matter what I do. Help!

2012-10-28 Thread Benjamin Possolo
On Sunday, October 28, 2012 7:28:05 AM UTC-7, ant...@gmail.com wrote: > Your URLs could be further improved if you go through the proposal in > http://carlosaguayo.posterous.com/html5-history-in-gwt > > Was i in your position, i would do the above and then generate a > sitemap.xml for search eng

Re: Can't get Google Crawler to index my GWT-based site no matter what I do. Help!

2012-10-28 Thread Benjamin Possolo
On Sunday, October 28, 2012 7:28:05 AM UTC-7, ant...@gmail.com wrote: > Your URLs could be further improved if you go through the proposal in > http://carlosaguayo.posterous.com/html5-history-in-gwt > Was i in your position, i would do the above and then generate a > sitemap.xml for search engin

Re: Can't get Google Crawler to index my GWT-based site no matter what I do. Help!

2012-10-28 Thread Benjamin Possolo
On Sunday, October 28, 2012 8:50:27 AM UTC-7, Joseph Lust wrote: > I see you're using places and the url tokens, are you using GWTP? There is > some built in crawler support there that you could use, or at least > investigate if you're not using GWTP. > > http://code.google.com/p/gwt-platform/wi

Re: extending uiBinder - give support to 3rd party GUI JavaScript toolkits

2012-10-28 Thread Alain Ekambi
Touch4j (http://www.emitrom.com/touch4j) does support UI Binder but we also extend from GWT Widget though. We wrap Sencha Touch but the widgets are GWT compatible. I dont know if it s possible to support UI Binder without extending from Widget. Thomas ? :) 2012/10/28 Sebastián Gurin > Hi al

extending uiBinder - give support to 3rd party GUI JavaScript toolkits

2012-10-28 Thread Sebastián Gurin
Hi all. I have ported a GUI JavaScript library to GWT -http://code.google.com/p/yuigwt/. I would like yuigwt users be able to use YUI widgets in uibinder. YUI (yuigwt) defines its own Widget infrastructure and class hierarchy, event handling, etc and it not depends on GWT widgets and GWT DOM.

Help needed for building a GWT Waveform library

2012-10-28 Thread Xybrek
I'm trying to build a open source GWT audio recorder waveform library, this is the showcase site: http://recorderwave.appspot.com/Showcase.html *Run Demo Wave:* Works just fine. *Recording: * The waveform rendering out of real time data from the flash interface is not really good, the perfor

Re: com.google.gwt.user.client.ui.Frame + Event handler / GWT 2.5

2012-10-28 Thread Jens
Remember to clean up the EventListener when you don't need it anymore. Failure to do so can result in memory leaks. -- J. -- 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

Re: GWT Designer - MenuBar

2012-10-28 Thread Marco
Next error in gwt designer after updating from gwt2.5_rc2 to gwt2.5. Full context stack trace: org.eclipse.wb.internal.core.utils.check.AssertionFailedException: Can not find method setRowData(java.util.List) in class com.google.gwt.user.client.ui.HTML at org.eclipse.wb.internal.core.ut

Re: com.google.gwt.user.client.ui.Frame + Event handler / GWT 2.5

2012-10-28 Thread Fabio
Hi have you tried my snippet ? create a ScriptElement and set the function text setText i.e. "function clickMe() {windows.alert('YEA')}" http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/dom/client/ScriptElement.html#setText(java.lang.String)

Re: CSS - add background-image to an existing style

2012-10-28 Thread Magnus
You're right! Thanks Magnus -- 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/-/-hHedHOMfQsJ. To post to this group, send email to google-web-toolk

Re: com.google.gwt.user.client.ui.Frame + Event handler / GWT 2.5

2012-10-28 Thread Hugues
how add a click listener handler on an gwt frame ( solved ) : We can't wrap a widget around an element from an iframe but we can add it to the event listener. public class CustomFrame extends Frame { public CustomFrame(){ sinkEvents(Event.ONLOAD); setUrl("http://127.0.0.1:/test.html";); setSi

Re: curious class class not found exception

2012-10-28 Thread Nuno Godinho de Matos
Thanks a lot and well spotted! What you just said makes all the sense in the world. I will take a look at my runtime lib folder in while. Thanks again. On Sunday, October 28, 2012 5:57:10 PM UTC+1, Jens wrote: > > And gwt-servlet.jar is in your war/WEB-INF/lib folder? > > In your stack trace y

Re: CSS - add background-image to an existing style

2012-10-28 Thread Jens
I guess it is s.setBackgroundImage("url(img/Background/std.jpg)"); The image should be loaded by the browser as soon as you have called the function and its set to the element. -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To

Re: curious class class not found exception

2012-10-28 Thread Jens
And gwt-servlet.jar is in your war/WEB-INF/lib folder? In your stack trace you can see: at com.google.appengine.tools.development.IsolatedAppClassLoader.loadClass(IsolatedAppClassLoader.java:207) which indicates that you are using AppEngine. The IsolatedAppClassLoader JavaDoc states that it

CSS - add background-image to an existing style

2012-10-28 Thread Magnus
Hi, I use a DockLayoutPanel as the root panel for my application. It uses the followijg CSS style: .display { margin:0px; /*# center center; */ background-color: #00; background-image: url(img/Background/std.jpg); background-repeat: no-repeat; background-position: 0px 60px; } Now the

Re: com.google.gwt.user.client.ui.Frame + Event handler / GWT 2.5

2012-10-28 Thread Hugues
Ok i see why , look at the source code of anchor : public static Anchor wrap(Element element) { // Assert that the element is attached. assert Document.get().getBody().isOrHasChild(element); This element is not a child of the main Document So this wrap can't work On Sunday, October

Re: com.google.gwt.user.client.ui.Frame + Event handler / GWT 2.5

2012-10-28 Thread Hugues
In fact it does not work :-/ I don't understand. In my debug i see the correct element but the wrap fail. I suppose the wrap fail because the element is not attached to the main DOM. Is it possible in gwt to wrap an element from an iframe as widget attached to the main module ? Element curren

curious class class not found exception

2012-10-28 Thread Nuno Godinho de Matos
Presently, when i try to run my gwt application through eclipse I am getting a curious: "java.lang.NoClassDefFoundError: com/google/gwt/user/client/rpc/RemoteService" The intersting about this exception is that by command line firing a gwt:run my project loads and runs just fine. It is thorugh

Re: Can't get Google Crawler to index my GWT-based site no matter what I do. Help!

2012-10-28 Thread Joseph Lust
I see you're using places and the url tokens, are you using GWTP? There is some built in crawler support there that you could use, or at least investigate if you're not using GWTP. http://code.google.com/p/gwt-platform/wiki/CrawlerSupport SIncerely, Joseph -- You received this message because

Re: Can't get Google Crawler to index my GWT-based site no matter what I do. Help!

2012-10-28 Thread antw...@gmail.com
Your URLs could be further improved if you go through the proposal in http://carlosaguayo.posterous.com/html5-history-in-gwt Was i in your position, i would do the above and then generate a sitemap.xml for search engine submittion Antonios [dot] Chalkiopoulos [at] keepitcloud [dot] com On Sat

Re: unable to resolve field:java.lang.Object.castableTypeMap

2012-10-28 Thread Bhaswanth Gattineni
Any help regarding the issue please. This happens only while building with eclipse, not happening with ant scripts all the time. On Thursday, October 25, 2012 1:58:52 PM UTC+5:30, Bhaswanth Gattineni wrote: > > Hi, > I am trying to compile the application, I am getting the following > erro

Re: com.google.gwt.user.client.ui.Frame + Event handler / GWT 2.5

2012-10-28 Thread Fabio
Well, if it works good for you... But if you created a ScriptElement with the function test equal to i.e. "function clickMe { window.alert("Click")}" and then on the ButtonElement you set the value i.e. setValue("clickMe()") it worked as well anyway you're welcome Il 28/10/2012 01:2