Re: HTML5 - GWT pre-fetching binary files.

2011-01-02 Thread ams
are optional. Does Chrome have a 5 megabyte limit? --Sri On 31 December 2010 06:05, ams alan.sny...@gmail.com wrote: I'm working with medical images 500 slices typically 512x512 gray scale that I would like to pre-fetch and display/manipulate in an HTML5 canvas element. The files

HTML5 - GWT pre-fetching binary files.

2010-12-30 Thread ams
I'm working with medical images 500 slices typically 512x512 gray scale that I would like to pre-fetch and display/manipulate in an HTML5 canvas element. The files will typically be local, but since this is GWT it will (as fas a I know) needs to be sent from the server. Since I'm using HTML5 this

Re: Gwt + JQuery

2010-10-13 Thread ams
You might want to look into GQuery. Here is a video link: http://www.youtube.com/watch?v=sl5em1UPuoI http://code.google.com/p/gwtquery/ http://www.gwtsite.com/gwt-jquery-gquery/ On Oct 13, 4:35 am, null murf...@gmail.com wrote: Hi all, To develop a gwt application with jquery code

IE and setInnerHTML

2010-10-12 Thread ams
IE (78) don't work well with setInnerHTML. The same calls that work find with FireFox and other browsers fail for IE. I've got some HTML that is sent from the server and must be inserted into an element. setInnerHTML always works for FF. On IE, I need to know when setInnerHTML will fail, and what

ChangeHandler for Element?

2010-09-02 Thread ams
I'd like to add a ChangeHandler to a SelectElement, instead of turning it into a ListBox. I've tried ListBox.wrap, but that gets an assertion since it is not attached to the RootPanel. It seems you could do a JSNI call to but I've not figured this out yet. Here is a small sample to under stand.