PDA

View Full Version : FX on Grid Row



kehnkis
24 Feb 2009, 1:58 AM
Hi,

I can't get the El property on an EditorGrid's row to make some visual effects on it, like FadeOut when I delete a row.
Is it possible to get the dom of the row to make Fx ?

Thx

fedanyuan55
24 Feb 2009, 11:36 PM
potiskanje, tako lepo temo dobro delovno mesto

christophe.bousquet
24 Feb 2009, 11:40 PM
potiskanje, tako lepo temo dobro delovno mesto

Thx fedanyuan for your help, was very helpfull.

kehnkis
25 Feb 2009, 12:59 AM
Ok, for those who are interested, I have found a possible solution :



com.google.gwt.user.client.Element rowElement = (com.google.gwt.user.client.Element)grid.getView().getRow(rowIndex);
El el = new El(rowElement);
BaseEffect.slideOut(el, FxConfig.NONE,Direction.UP);


And that juste make the trick

christophe.bousquet
25 Feb 2009, 1:02 AM
Exactly what i was looking for , nice m8