Re: How can I add a MouseOutHandler to a FlexTable cell?

2009-08-11 Thread lowecg2004
Based on Kelo's example above: public class BocaJrsTable extends FlexTable implements HasMouseOutHandlers { // ... as above, but add the following: public int[] getCellForEvent(final MouseEvent? event) { final Element td =

Re: How can I add a MouseOutHandler to a FlexTable cell?

2009-06-16 Thread Ravi
addDomHandler(handler, MouseOverEvent.getType());        } On Jun 12, 12:52 pm, Eduardo Nunes esnu...@gmail.com wrote: Well, the subject says everything, I would like to know how can I add a MouseOutHandler to a FlexTable cell. I tried a lot of things but none of them with success. I tried

Re: How can I add a MouseOutHandler to a FlexTable cell?

2009-06-15 Thread Dean S. Jones
Thanks for the example - I have to support 1.5 and 1.6 - so I am still coding to the old event model... But it's nice to see looking inside HandlerManager that they defer editing of the handler list while the event it firing. --~--~-~--~~~---~--~~ You received

How can I add a MouseOutHandler to a FlexTable cell?

2009-06-12 Thread Eduardo Nunes
Well, the subject says everything, I would like to know how can I add a MouseOutHandler to a FlexTable cell. I tried a lot of things but none of them with success. I tried a wrap class: private class FlexTableTd extends Widget implements HasMouseOutHandlers, HasMouseOverHandlers

Re: How can I add a MouseOutHandler to a FlexTable cell?

2009-06-12 Thread matthew jones
Try this instead. addMouseOverHandler(MouseOverHandler handler) { return addDomHandler(handler, MouseOverEvent.getType()); } On Jun 12, 12:52 pm, Eduardo Nunes esnu...@gmail.com wrote: Well, the subject says everything, I would like to know how can I add a MouseOutHandler

Re: How can I add a MouseOutHandler to a FlexTable cell?

2009-06-12 Thread Eduardo Nunes
) {            return addDomHandler(handler, MouseOverEvent.getType());        } On Jun 12, 12:52 pm, Eduardo Nunes esnu...@gmail.com wrote: Well, the subject says everything, I would like to know how can I add a MouseOutHandler to a FlexTable cell. I tried a lot of things but none of them with success

Re: How can I add a MouseOutHandler to a FlexTable cell?

2009-06-12 Thread Kelo
this instead. addMouseOverHandler(MouseOverHandler handler) {            return addDomHandler(handler, MouseOverEvent.getType());        } On Jun 12, 12:52 pm, Eduardo Nunes esnu...@gmail.com wrote: Well, the subject says everything, I would like to know how can I add a MouseOutHandler