Page Flip Animation

2010-10-25 Thread fonghuangyee
Is it possible to create page flip animation as the flash demo by using GWT? http://www.flashpageflip.com/demos/free/ -- 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.

XMLParser Question

2010-07-05 Thread fonghuangyee
StringBuffer xmlBfr = new StringBuffer(); xmlBfr.append(Layout); xmlBfr.append(Column type=\Middle\/Column); xmlBfr.append(Column type=\Middle\/Column); xmlBfr.append(/Layout); String xml = xmlBfr.toString(); Document document = XMLParser.parse(xml); Element element =

Re: GWT.isClient() always return true

2010-05-16 Thread fonghuangyee
Returns true when running inside the normal GWT environment, either in hosted mode or web mode. Returns false if this code is running in a plain JVM. This might happen when running shared code on the server, or during the bootstrap sequence of a GWTTestCase test. I am sorry, My question is : if i

Re: GWT.isClient() always return true

2010-05-16 Thread fonghuangyee
Thanks! On May 16, 11:18 pm, Sripathi Krishnan sripathi.krish...@gmail.com wrote: When deployed to tomcat as javascript, it will always return true. --Sri On 16 May 2010 20:38, fonghuangyee fonghuang...@gmail.com wrote: Returns true when running inside the normal GWT environment

MouseMoveEvent problem when i move my mouse very fast

2010-04-13 Thread fonghuangyee
addMouseMoveHandler(new MouseMoveHandler() { @Override public void onMouseMove(MouseMoveEvent event) { System.out.println(X : + event.getX()); }); My problem is, if i move my mouse very fast, i cant receive every MouseMoveEvent. As the code above, i aspect:

Re: MouseMoveEvent problem when i move my mouse very fast

2010-04-13 Thread fonghuangyee
http://www.farbtube.com this is the demo, or should i use a canvas? Anyone know how to implement it? On Apr 13, 3:45 pm, fonghuangyee fonghuang...@gmail.com wrote: addMouseMoveHandler(new MouseMoveHandler() {         @Override         public void onMouseMove(MouseMoveEvent event

Re: MouseMoveEvent problem when i move my mouse very fast

2010-04-13 Thread fonghuangyee
problem and i dont think it has a solution since the events are sent from the browser and if they are wrong then theirs nothing to do about it On 13 אפריל, 09:35, fonghuangyee fonghuang...@gmail.com wrote: http://www.farbtube.com this is the demo, or should i use a canvas? Anyone know how

Re: New GWT widget resource, of sorts: vaadin.com/directory

2010-03-31 Thread fonghuangyee
After i study Vaadin, it is really good. By the way,it is too bad because Vaadin not support code splitting. Anyway i will keep a look at Vaadin, thanks for your sharing. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: New GWT widget resource, of sorts: vaadin.com/directory

2010-03-30 Thread fonghuangyee
hi emarc, since u are familiar with vaadin, can i ask u an question regarding vaadin demo? Why every click from the demo will send a request to server to retrieve something like this : for(;;);[{changes:[[change,{format: uidl,pid: PID0},[0, {id: PID0,height: 719px,width: 1440px,caption: Native

Re: New GWT widget resource, of sorts: vaadin.com/directory

2010-03-30 Thread fonghuangyee
hi emarc, since u are familiar with vaadin, can i ask u a question regarding vaadin demo? Why every click from the demo will send a request to server to retrieve something like this : for(;;);[{changes:[[change,{format: uidl,pid: PID0},[0, {id: PID0,height: 719px,width: 1440px,caption: Native

gwt-button : Firefox Dotted Border

2010-02-05 Thread fonghuangyee
Hi, is there anyone notice that the gwt button will show dotted border when focus on firefox. i try .gwt-button:focus { outline : none; } but the dotted border still there. Any solution? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Code Split Question

2009-12-15 Thread fonghuangyee
i split my code into 4 cache.js, and GWT will produce 5 cache.js. May i know what is the extra cache.js?Because i found that the extra cache.js size is quite big. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: Gwt Tree always scroll to the bottom?

2009-10-19 Thread fonghuangyee
I think i found something, this behavior only will happened if i put the tree inside a VerticalPanel, or FlexTable ( I think is any table component ). On Oct 19, 11:56 am, fonghuangyee fonghuang...@gmail.com wrote: Hi, Why when i select TreeItem at bottom level, the screen will scroll

Gwt Tree always scroll to the bottom?

2009-10-18 Thread fonghuangyee
Hi, Why when i select TreeItem at bottom level, the screen will scroll to bottom? Can i prevent this kind of behavior? Thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

RichTextArea : Insert HTML ( not setHTML )

2009-10-12 Thread fonghuangyee
Hi, Is there anyway i can insert html into a RichTextArea? The html code should display just beside the pointer. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: RichTextArea : Insert HTML ( not setHTML )

2009-10-12 Thread fonghuangyee
, 2:46 pm, fonghuangyee fonghuang...@gmail.com wrote: Hi, Is there anyway i can insert html into a RichTextArea? The html code should display just beside the pointer. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: MVP HasClickHandler

2009-09-11 Thread fonghuangyee
through View.getSelectionSource(). This allows different View implementations to implement different sources for the SelectionEvent, reducing potential coupling between the view and presenter. Hope that helps. -Jason On Sep 10, 10:47 am, fonghuangyee fonghuang...@gmail.com wrote: Thanks

Re: MVP HasClickHandler

2009-09-10 Thread fonghuangyee
handler. V/r, Jason On Sep 6, 3:19 am, fonghuangyee fonghuang...@gmail.com wrote: Hihi , After i go through so manyMVPexample, i found that we always use presenter to get thoseHasClickHandlerfrom Display( Or View) to do some action. This way works nice for static clickable action

MVP ClickHandler Problem

2009-09-06 Thread fonghuangyee
Hihi , After i go through so many MVP example, i found that we always use presenter to get those HasClickHandler from Display( Or View) to do some action. This way works nice for static clickable action, but if we have some dynamic button ( example a table listing with a list of clickable action

MVP HasClickHandler

2009-09-06 Thread fonghuangyee
Hihi , After i go through so many MVP example, i found that we always use presenter to get those HasClickHandler from Display( Or View) to do some action. This way works nice for static clickable action, but if we have some dynamic button ( example a table listing with a list of clickable action

Re: Image Cropper

2009-08-09 Thread fonghuangyee
Emm... seems like no feedback here. On Aug 4, 8:25 pm, fonghuangyee fonghuang...@gmail.com wrote: Hi, i am looking for animagecropperwidget for gwt. Below is the example.http://www.defusion.org.uk/demos/060519/cropper.php i try to use a resizable panel to build theimagecropper, but just

Image Cropper

2009-08-04 Thread fonghuangyee
Hi, i am looking for an image cropper widget for gwt. Below is the example. http://www.defusion.org.uk/demos/060519/cropper.php i try to use a resizable panel to build the image cropper, but just not as smooth as those javascript image cropper.