problem related to populating list boxes

2010-04-19 Thread Durgesh Kumar Mishra
Hi I am Durgesh. I am facing a problem in populating list box frequently. I am using simple GWT 1.5. In my form there are 6-7 list boxes and many text boxes. I am populating this form from the view in database. I have written a service for that. But sometimes list boxes do not populate ...the

Re: How to see my posts

2010-04-19 Thread Sidharsh P
Hello Thomas, Here is the post I had posted a few days back. Regards Title:GWT ...geting 2 elements in one row and how to link to several html files instead on of only one Hello, I am new to GWT I am trying to create a simple login page which is linked to a login.html and login.css file I h

Re: Crawlable AJAX - jQuery Load

2010-04-19 Thread Dusty
I asked it to fetch http://friendorfollow.com/dustyreagan/following/ If I ask it to fetch either: http://friendorfollow.com/dustyreagan/following/#! http://friendorfollow.com/dustyreagan/following/?_escaped_fragment_= It works correctly. Shouldn't it also work for the plain URL? http://friendor

Re: Paging Scroll Table in GWT 2.0.x?

2010-04-19 Thread davek
I'm using it successfully. There are some deprecation warnings under 2.0.3 that I've haven't gotten around to addressing. Otherwise it works really well. On Apr 19, 2:46 am, googelybear wrote: > Hi, > > I basically thave the same question as already asked here, but for the > current version of

Re: Crawlable AJAX - jQuery Load

2010-04-19 Thread Katharina Probst
Hi Dusty, what URL did you enter in "Fetch as Googlebot"? It should work for http://friendorfollow.com/dustyreagan/following/?_escaped_fragment_= (or for http://friendorfollow.com/dustyreagan/following/#!, but that doesn't rea

Re: Crawlable AJAX - jQuery Load

2010-04-19 Thread Dusty
Thanks so much for your help Kathrin! :) However, I've tried these steps and Googlebot is still giving me no love. If you go to http://friendorfollow.com/dustyreagan/following/ you can see I've placed the meta tag in the header. Then if you go to http://friendorfollow.com/dustyreagan/following/

Re: Get JSON content from GWT

2010-04-19 Thread Chris Conroy
On Mon, Apr 19, 2010 at 4:01 PM, Julian! wrote: > http://api.search.yahoo.com/ImageSearchService/V1/imageSearch? > appid=YahooDemo&query=potato&results=2&output=json Julian, The problem you are hitting is the Same Origin Policy

AsyncProxy Example

2010-04-19 Thread Raziel
Does anybody have an example of implementing AsyncProxy to dynamically load a class via the underlying runAsync? Basically I use the snippet of code in the AsyncProxy javadoc, but at compilation time I get the following error: interface IFoo { void doSomething(int a, int b); void anothe

Re: DeferredCommand does not work in IE

2010-04-19 Thread Ian Petersen
My guess is that summaryPageLoader.load(0, 30) invokes an RPC and you end up trying to resize the widget before the data has been loaded. If I'm right, you need to resize in the onSuccess of the RPC's AsyncCallback rather than during some arbitrary deferred command. Ian On Mon, Apr 19, 2010 at 2:

Re: GWT presentation/workshop

2010-04-19 Thread Ed
> Can you share complex application. i would like to go through and learn. Sorry, not possible, it's not open source at the moment.. And I wouldn't recommend it, as they aren't small and you will probably need quite some time to get in to it.. But I can probably share pieces of you let me know what

DeferredCommand does not work in IE

2010-04-19 Thread DK
I am trying to resize the height of a tab-panel based on the content populated onto a grid. I need to defer that work until data is loaded into the grid. Currently, I am doing the following: grid.addListener(Events.Attach, new Listener>() { public void hand

GWT 1.7, Eclipse: how do I tell jetty

2010-04-19 Thread Jferg
What teh context root is, right now it defaults to "/"... I would like a little more control over this because I want one entry page and be able to use it in Hosted mode or in Tomcat when I drop the WAR file in there. I did search this group and I did try looking at Jetty docs... I may have missed

Re: GWT presentation/workshop

2010-04-19 Thread sridhar vennela
Hi Ed, Can you share complex application. i would like to go through and learn. thanks, On Mon, Apr 19, 2010 at 12:55 PM, Ed wrote: > > do you have sample template project. presentation is really good. > > Sorry, I don't have that, I only have complex GWT projects that > contains many parts of

Re: When does a reference to an interface force GWT to generate all its implementations?

2010-04-19 Thread Nathan Wells
It will force GWT to generate javascript for every java class that implements Iterator that is a "source" class. Typically, source classes are those in the client package, and anything in super source. In any case, how many elements are in your array? If there are not that many, I would just copy

Re: Json cross-domain examle (JS Error: Object doesn't support this action - hosted.html)

2010-04-19 Thread nasionalem
I relized that It works successfully on Firefox and Chrome, but I'm getting this error on IE 8.0. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from

Json cross-domain examle (JS error on IE 8.0 - Object doesn't support this action)

2010-04-19 Thread nasionalem
Hello, I am working on cross-domain example below; http://code.google.com/webtoolkit/doc/latest/tutorial/Xsite.html#design I did all the steps in the tutorial, actually It works fine on "firefox" and "chrome". It also works on "IE 8.0", but I am just getting JavaScript Error in "IE 8.0". "Object

Json cross-domain examle (JS Error: Object doesn't support this action - hosted.html)

2010-04-19 Thread nasionalem
Hello, I am working on cross-domain example below; http://code.google.com/webtoolkit/doc/latest/tutorial/Xsite.html#design I did all the steps in the tutorial, actually It works fine, but there is just a problem. I am getting JavaScript error below; "Object doesn't support this action hosted.html

Get JSON content from GWT

2010-04-19 Thread Julian!
Hi all !! im trying to get the content from a json service like yahoo, but I never get the result correctly: this is my code: RequestBuilder builder = new RequestBuilder(RequestBuilder.GET, "http://api.search.yahoo.com/ImageSearchService/V1/imageSearch? appid=YahooDemo&query=potato&results=2&out

Re: GWT presentation/workshop

2010-04-19 Thread Ed
> do you have sample template project. presentation is really good. Sorry, I don't have that, I only have complex GWT projects that contains many parts of the presentation. But I understand that you miss the story that comes with the presentation which explain many issues. Ask me about concrete p

Re: GWT presentation/workshop

2010-04-19 Thread Ed
@se: > Good work! Thanks > You might want to fully update it for GWT 2.0 > development mode -- is now in the browser itself Interesting conclusion as it's all about GWT 2.0... Please let me know why did you get to this conclusion, so I can update the presentation a bit? > gwt api's -- gears is de

Re: css file in gwt.xml

2010-04-19 Thread Sheldon Hicks
I'm in the process of upgrading some GWT 1.5 apps to 2.0 and noticed the same thing in the tutorial. If you want to reference the css file in the module xml file instead of the html file, you still need to create a folder called 'public' in the same directory as your module xml file and stick your

Re: GWT - Visualization of graph/tree containing nodes and edges, moving and adding nodes...

2010-04-19 Thread Peter Simun
and what about using GWT raphael wrapper ? http://code.google.com/p/raphaelgwt/ You can find getting started wiki there (http://code.google.com/p/ raphaelgwt/wiki/GettingStarted) and also the sample project http://code.google.com/p/raphaelgwt/source/browse/#svn/trunk/samples. -p- On 15. Apr, 22:

Re: Visual CMS with GWT

2010-04-19 Thread Peter Simun
This CMS was done using GWT framework. http://admin.demo.synapso.sk/ (demo/demo) Try to evaluate features and you will see if GWT is sufficient to you. Anyway, GWT allows you everything you need - drag & drop, real-time text updates (WYSIWYG), etc. On 15. Apr, 16:39 h., "graham.col...@gmail.com"

When does a reference to an interface force GWT to generate all its implementations?

2010-04-19 Thread Eric
As I've been told, one should not declare parameters to client GWT code as interfaces like List. The typical way to write a JavaBean containing a list is this: public class Frames { private List frames = new ArrayList(); public void setFrames(List frames) { this.frames = frames; } //

Re: Crawlable AJAX - jQuery Load

2010-04-19 Thread Katharina Probst
Yes, that's right! kathrin On Mon, Apr 19, 2010 at 3:00 PM, Dusty wrote: > So, if I understand you right, it should work like this?: > > 1) I put in my static page (ie my > example: http://friendorfollow.com/dustyreagan/following/) > 2) Google will see it, then request > http://friendorfollow.

Re: Crawlable AJAX - jQuery Load

2010-04-19 Thread Dusty
So, if I understand you right, it should work like this?: 1) I put in my static page (ie my example: http://friendorfollow.com/dustyreagan/following/) 2) Google will see it, then request http://friendorfollow.com/dustyreagan/following/?_escaped_fragment_= 3) When my webserver sees _escaped_fragm

Re: Compilation Error

2010-04-19 Thread rxm0203
Here are the contents of .classpath file.

Re: GWT presentation/workshop

2010-04-19 Thread se
Hi Ed, Good work! You might want to fully update it for GWT 2.0 development mode -- is now in the browser itself gwt api's -- gears is deprecated SE On Apr 19, 1:16 pm, Ed wrote: > Hi All, > > If you really have nothing to do, have a look at this GWT > presentation:http://www.slideshare.net/edb

Creating custom 'elements' for UiBinder, like in DockLayoutPanel

2010-04-19 Thread Graham J
DockLayoutPanel has the , , etc. which are referred to as 'elements' on the UiBinder help page. (http://code.google.com/ webtoolkit/doc/latest/DevGuideUiBinder.html#Panels) Any idea how one would go about adding this functionality to my own widgets? Theirs appear to be parametrized and everything.

Re: Publishing gwt project. Combining with php

2010-04-19 Thread Christian Goudreau
Yes it ! You can even test your project with Php server backend ! There's some settings to change and then you add the folder war/projectname to your project and you're almost done. Create a Web Application launch configuration and add the following to parameters to the 'program arguments': -no

Publishing gwt project. Combining with php

2010-04-19 Thread braverju
Dear everybody, I am a novice with gwt. I managed to create a gwt project using Eclipse. The project draws a chart using com.google.gwt.visualization.client.visualizations.AnnotatedTimeLine .The project works fine with Tomcat, localhost. How can I now publish the project to the remote host? Shoul

javax.servlet.ServletException: Content-Type was '(null)'. Expected 'text/x-gwt-rpc'.

2010-04-19 Thread Twentyseven
Hello, We're using GWT 2.0, Spring 2.5. On our production server we have sometime this error : SEVERE: Exception while dispatching incoming RPC call javax.servlet.ServletException: Content-Type was '(null)'. Expected 'text/x-gwt-rpc'. at com.google.gwt.user.server.rpc.RPCServletUtils.chec

Re: Compilation Error

2010-04-19 Thread Rajeev Dayal
Can you post the contents of your .classpath file? On Mon, Apr 19, 2010 at 11:42 AM, rxm0203 wrote: > Hi Rajeev, > > I don't see JDT appearing on the build path. Let me know your > suggestions for the next step. > > Thanks, > > Rahul > > On Apr 16, 10:28 am, Rajeev Dayal wrote: > > Hm, I'm won

Re: firebug aborted *.cache.html

2010-04-19 Thread Simon B
I think this is a red herring / non problem, when I changed the config of my apache to: SetOutputFilter DEFLATE ExpiresActive On ExpiresDefault "modification plus 2 years" SetOutputFilter DEFLATE ExpiresActive On ExpiresDefault "now" and then in f

Re: GWT plugin for eclipse install problem

2010-04-19 Thread Jason Parekh
Hey, Could you try starting with a fresh Eclipse for Java EE and run Eclipse with admin privileges? I recall some folks having weird issues on Windows 7 that were resolved by doing this. If it doesn't work, we can dig into your configuration and log files to figure out what's going wrong. jason

Re: Using Oracle and Hibernate in Google Web Toolkit's Hosted Mode.

2010-04-19 Thread Jason Hatton
keyboard-samurai I would highly recommend you check out the Google I/O GWT Best Practices video. It talks about gwt-dispatch and MVP. You will want to implement your connections to Oracle/Hibernate in the GWT-RPC servlets. The project I am on we are u

Re: Crawlable AJAX - jQuery Load

2010-04-19 Thread Katharina Probst
You might use in your html page, and when the crawler requests the corresponding _escaped_fragment_= URL, you'll have a version without jQuery, where you load the results page fragment into the static HTML and return that. Depending on what your server looks like, it first has to recognize that i

Re: Best CSS practice for complex GWT Widgets using UiBinder

2010-04-19 Thread Katharina Probst
You can also change styles in the ui.xml file directly inside a tag, like so: @external gwt-SuggestBox; @external gwt-SuggestBoxPopup; .gwt-SuggestBox { ... } .gwt-SuggestBoxPopup { ... } (Note the @external - you need that for predefined styles) kathrin On Mon, Apr 19,

Re: Rounded Corners with UIBinder

2010-04-19 Thread Jason Hatton
Take a look at the DecoratorPanel. It implements a 9-box and you should be able to use css to override the defaults. http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/user/client/ui/DecoratorPanel.html On Fri, Apr 16, 2010 at 12:15 AM, Jonny wrote: > So given that CSS is

Re: Using Oracle and Hibernate in Google Web Toolkit's Hosted Mode.

2010-04-19 Thread keyboard_samurai
awesome do we have a article how to get this done ??? and also does it gets integrated with eclipse ? Regards, -Yogesh On Apr 19, 8:45 pm, Jason Hatton wrote: > You will get that with just GWT. > > > > On Mon, Apr 19, 2010 at 9:55 AM, keyboard_samurai wrote: > > Then do you replace tomcat with

Re: Spring MVC with GWT RPC

2010-04-19 Thread keyboard_samurai
The issue was somehow the init(ServletConfig) was not getting called... I made the controller ServletConfigAware and manually gave a call to super.init(config) and that worked ... On Apr 18, 7:26 pm, keyboard_samurai wrote: > Also i see a alertbox by the browser that "This page is accessing > i

Re: JSNI: No-body native methods to refer to existing methods in JavaScript object

2010-04-19 Thread Thomas Broyer
On Apr 19, 11:34 am, Reinier Kip wrote: > Hi, > > I am trying to map existing JavaScript 'classes' in the document to > client-side Java classes. Take this example JS 'class': > > Alerter = function() { >   this.alert = function(msg) { >     alert(msg); >   }; > > }; > > Mapping this to a client

Re: Using Oracle and Hibernate in Google Web Toolkit's Hosted Mode.

2010-04-19 Thread Jason Hatton
You will get that with just GWT. On Mon, Apr 19, 2010 at 9:55 AM, keyboard_samurai wrote: > Then do you replace tomcat with GAE ? i want to have the benefits of > Hosted mode i.e auto compile and debug ??? > > > > On Apr 19, 5:32 pm, Sripathi Krishnan > wrote: > > Disable Google App Engine in y

Re: Compilation Error

2010-04-19 Thread rxm0203
Hi Rajeev, I don't see JDT appearing on the build path. Let me know your suggestions for the next step. Thanks, Rahul On Apr 16, 10:28 am, Rajeev Dayal wrote: > Hm, I'm wondering if there is some sort of issue with multiple versions of > JDT appearing on the classpath. Does Drools utilize JDT

Re: GWT presentation/workshop

2010-04-19 Thread sridhar vennela
do you have sample template project. presentation is really good. On Mon, Apr 19, 2010 at 7:11 AM, Abdullah Shaikh < abdullah.shaik...@gmail.com> wrote: > Hi Ed, > > I just saw the entire presentation, thanks, it was really useful. > > - Abdullah > > > On Mon, Apr 19, 2010 at 3:46 PM, Ed wrot

Re: Best CSS practice for complex GWT Widgets using UiBinder

2010-04-19 Thread Thomas Broyer
On Apr 19, 8:54 am, Roland Bali wrote: > Hi, > > I did some searching but couldn't anything about this subject. I'm > using the SuggestBox widget and I'd like to change the layout for > elements in a SuggestBox. > > For example I can change the .gwt-SuggestBox by adding addStyleNames > but that

Re: gwtUpload : problem with servlet

2010-04-19 Thread Thomas Broyer
On Apr 19, 4:48 pm, laurent wrote: > Hello , > > when i upload my application , error in the log "Caused by: > java.lang.ClassNotFoundException: gwtupload.server.UploadAction" Did you add the GWTUpload JAR into your war/WEB-INF/lib folder? (along with commons-fileupload and other dependencies)

Re: session.setAttribute in GWT

2010-04-19 Thread Gal Dolber
This is not an gwt question. Are you talking about Appengine? If so, session attributes are allowed. But they must be Serializables. 2010/4/18 davids > Hi > > we had a problem setting the user attribute into the session: > > if you want to use for Session support, ENABLE it in the appengine- >

Re: Rolebased authorisation in GWT

2010-04-19 Thread Nathan Wells
To optimize without the overhead of deferred binding, you might explore using the GWT.runAsync() method. On Apr 16, 10:47 am, Sripathi Krishnan wrote: > To easily hide/disable things from the user if he doesn't have access, we > created a custom class 'SecurePanel' > > Assuming you are using uibi

Re: Spring MVC with GWT RPC

2010-04-19 Thread keyboard_samurai
Any pointers for identifying what could be the problem? On Apr 18, 7:26 pm, keyboard_samurai wrote: > Also i see a alertbox by the browser that "This page is accessing > information that is not under its control. This poses a security risk. > Do you want to continue ? > > This is the only thing

Re: Image.setUrl / load event / onLoad / LoadHandler / LoadEvent

2010-04-19 Thread Thad
I don't think that's a bug at all. The image is not loaded until it is in the DOM, and that does not happen when the servlet is called, but after the image is returned. My application a lot with resizing and otherwise manipulating images. I pass the available display dimensions to my image servle

Re: Help me in understanding Binding Concept

2010-04-19 Thread Nathan Wells
Are you referring to Deferred Binding (http://code.google.com/ webtoolkit/doc/1.6/FAQ_Client.html#Deferred_Binding), or Beans Binding (https://beansbinding.dev.java.net/) They are two very different concepts. On Apr 19, 4:26 am, sridevi macherla wrote: > Hi All, > > Can some one please help me i

Re: Using Oracle and Hibernate in Google Web Toolkit's Hosted Mode.

2010-04-19 Thread keyboard_samurai
Then do you replace tomcat with GAE ? i want to have the benefits of Hosted mode i.e auto compile and debug ??? On Apr 19, 5:32 pm, Sripathi Krishnan wrote: > Disable Google App Engine in your eclipse settings. GAE does not allow you > to use databases or open network connections. > > --Sri > >

gwtUpload : problem with servlet

2010-04-19 Thread laurent
Hello , when i upload my application , error in the log "Caused by: java.lang.ClassNotFoundException: gwtupload.server.UploadAction" SampleUploadServlet.java : package miro.server; import java.util.List; import javax.servlet.http.HttpServletRequest; import org.apache.commons.fileupload.FileItem;

GTW generators for XML

2010-04-19 Thread masch
Hello, I am using GWT annotations and generators and I need to create an XML output beside the Class output, How can I do it? salu2... masch... -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-w

Re: ScrollPanel Problem

2010-04-19 Thread KarlG
Marco, would you be kind enough to share you solution? I just ran into the same thing. Thank you. Karl On Apr 14, 11:59 pm, Marco Gadaleta wrote: > But i have find a solution :-) > > 2010/4/14 Patou > > > > > It's not possible to use a scroll Panel in Mobile navigator (Android > > and Iph

Crawlable AJAX - jQuery Load

2010-04-19 Thread Dusty
I've been reading the "Making AJAX Applications Crawlable" specs (http://code.google.com/intl/sv-SE/web/ajaxcrawling/docs/getting- started.html) and I'm at a loss at how to apply this to my application. I use jQuery to load an HTML page fragment into a DOM element on a mostly pure HTML page. It ta

GWT plugin for eclipse install problem

2010-04-19 Thread xwise
I saw a few other posts related to this but nothing that would solve my problem. I'm just trying to setup the GWT plugin for eclipse 3.5, following the instructions at: http://code.google.com/eclipse/docs/getting_started.html http://code.google.com/eclipse/docs/install-eclipse-3.5.html The plugin

Best CSS practice for complex GWT Widgets using UiBinder

2010-04-19 Thread Roland Bali
Hi, I did some searching but couldn't anything about this subject. I'm using the SuggestBox widget and I'd like to change the layout for elements in a SuggestBox. For example I can change the .gwt-SuggestBox by adding addStyleNames but that only changes .gwt-SuggestBox but how do I change the "su

Re: GWT Developer Plugin is not found in Firefox

2010-04-19 Thread Matthew Willis
I am also getting this behavior. The plugin acts as if it weren't installed. Did you figure it out, Michel? On Apr 9, 11:35 pm, Michel Alexandre Salim wrote: > On Apr 2, 7:43 pm, Christopher Conroy wrote:> On Fri, Apr > 2, 2010 at 7:38 AM, na...@hu.inter.net wrote: > > > I see 'Google Web To

GWT developer plugin for chrome under linux

2010-04-19 Thread Andrew Romanov
Is google planning to release GWT developer plugin for Chrome under Linux (I am actually using Chromium)? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscr

session.setAttribute in GWT

2010-04-19 Thread davids
Hi we had a problem setting the user attribute into the session: if you want to use for Session support, ENABLE it in the appengine- web.xml. to enable sessions, put true in that file. Without it, getSession() is allowed, but manipulation of sessionattributes is not. -- You received this messa

Re: GWT presentation/workshop

2010-04-19 Thread Abdullah Shaikh
Hi Ed, I just saw the entire presentation, thanks, it was really useful. - Abdullah On Mon, Apr 19, 2010 at 3:46 PM, Ed wrote: > Hi All, > > If you really have nothing to do, have a look at this GWT > presentation: > http://www.slideshare.net/edbras/all-about-gwt > I made it to give GWT presen

Re: GWT presentation/workshop

2010-04-19 Thread Ed
I am happy that you liked it :) Thanks for the feedback -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to google-web-too

Re: GWT presentation/workshop

2010-04-19 Thread nino ekambi
Thx i really like it :) Greets Nino 2010/4/19 Ed > Hi All, > > If you really have nothing to do, have a look at this GWT > presentation: > http://www.slideshare.net/edbras/all-about-gwt > I made it to give GWT presentations/workshops here in Holland (it's in > English). > > Maybe it can be use

how to send data to google app engine datastore api

2010-04-19 Thread KeremPekcabuk
Hi, i look at the samples created by GWT and Google App Engine. all the samples about getting the data from google app engine datastore api. is there any example which sends the data to Google App Engine Data Store Api ?. For example a save button(in GWT) which saves data to the database of Goo

testing user clicks

2010-04-19 Thread yilativs
Hi, I want to unit test what happens when user clicks on button in GWT 2.0 Button has click method but calling it click handlers do not run. Is there any way to simulate user clicks in UI? Regards, Vitaliy S -- You received this message because you are subscribed to the Google Groups "Google

Re: Transferring an image over an PRC call

2010-04-19 Thread ahmet terzioglu
Yes, that is exactly what I did and it works now, thank you. On Sun, Apr 18, 2010 at 10:51 PM, Trevis wrote: > Is your goal to show the image in an img tag in the web browser? I > have user uploadable images on my gwt website and to present the > images to users i use an http servlet. I have

Re: Using Oracle and Hibernate in Google Web Toolkit's Hosted Mode.

2010-04-19 Thread Sripathi Krishnan
Disable Google App Engine in your eclipse settings. GAE does not allow you to use databases or open network connections. --Sri On 19 April 2010 17:59, keyboard_samurai wrote: > Hello, > > I need to know if anyone is able to query the database for fetching > data. This is a common requirement

Using Oracle and Hibernate in Google Web Toolkit's Hosted Mode.

2010-04-19 Thread keyboard_samurai
Hello, I need to know if anyone is able to query the database for fetching data. This is a common requirement for most of the applications to use database.If Hosted Mode doesnt support it then how are the users of GWT developing ? Do let me know !! I get an exception while connecting to database

Image.setUrl / load event / onLoad / LoadHandler / LoadEvent

2010-04-19 Thread Simon Botting
Hi, I've got a question about the Image onLoad mechanism in GWT 2.0.3 - I was setting the url of the Image with setUrl(String) call and no LoadEvent was being fired, which confused me as, according to the javadoc the setUrl method... "Sets the URL of the image to be displayed. If the image is in

Re: Maven, again

2010-04-19 Thread mkkm...@gmail.com
I'm using gwt-maven-plugin and I works very well. To add the Google project nature to the project you need to configure your maven-eclipse-plugin like this: org.apache.maven.plugins maven-eclipse-plugin ${maven.eclipse.plugin.version}

Re: Maven, again

2010-04-19 Thread Jan Ehrhardt
I'm currently working on a sample app for my GWT logging framework and it uses Maven. http://github.com/derjan1982/slf4gwt/tree/master/samples/ It might be an example setup for you, allthough it's not finished yet. I'm using m2eclipse for development and everything works, except I've to enable GW

Help me in understanding Binding Concept

2010-04-19 Thread sridevi macherla
Hi All, Can some one please help me in understanding the concept of Binding and how is it related to GWT. Please provide me some links in this regard. and why is it required what are differnt types of binding. Thanks Sri -- You received this message because you are subscribed to the Google Gr

GWT presentation/workshop

2010-04-19 Thread Ed
Hi All, If you really have nothing to do, have a look at this GWT presentation: http://www.slideshare.net/edbras/all-about-gwt I made it to give GWT presentations/workshops here in Holland (it's in English). Maybe it can be useful to you, Ed -- You received this message because you are subscrib

Re: GWT useful for HTML Parsing? Is it fast enough

2010-04-19 Thread Chris Lercher
Thanks, very interesting. I set a bookmark. On Apr 19, 11:05 am, Thomas Broyer wrote: > Because it implements the HTML5 parsing rules, algorithm that has been > written to predictably parse web pages as found "in the wild", with > results that are as close as possible as what browsers do today

Paging Scroll Table in GWT 2.0.x?

2010-04-19 Thread googelybear
Hi, I basically thave the same question as already asked here, but for the current version of gwt: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/610a20088c153898/c083bb973cf44f32 Is the PST still maintained for gwt 2.0.x? Would you recommend to use it or are there other a

JSNI: No-body native methods to refer to existing methods in JavaScript object

2010-04-19 Thread Reinier Kip
Hi, I am trying to map existing JavaScript 'classes' in the document to client-side Java classes. Take this example JS 'class': Alerter = function() { this.alert = function(msg) { alert(msg); }; }; Mapping this to a client-side Java class currently means: class Alerter extends JavaScrip

Re: GWT useful for HTML Parsing? Is it fast enough

2010-04-19 Thread Thomas Broyer
On Apr 19, 2:09 am, Chris Lercher wrote: > Hi Thomas, > > I agree. I just don't see any advantage for GWT in this case. So I'd > say, that using it only makes sense, if there are other reasons, which > weren't expressed in the question. > > By the way, GWT uses NekoHTML, too (it's in gwt-dev.jar

How to add an image in a row of a PagingScrollTable

2010-04-19 Thread crojay78
Hi, I implemented a PagingScrollTable in my project (I found a very good example here http://zenoconsulting.wikidot.com/blog:17) but now I have a problem which I do not know how to solve. My table is working as expected, but I want to add a new column which contains an delete icon, so that I can

Re: Develop UiBinder widgets??

2010-04-19 Thread Toni
Ok, that's it, my widget didn't implement HasWidgets. Thanks for your help! On Apr 18, 8:36 am, jocke eriksson wrote: > Some questions: > > Do you import the namespace where the widget is. > Is your widget a container meaning does it implement has widgets. > > 2010/4/16 Toni > > > > > > > Hi the