nickydavid
20 Oct 2008, 10:29 PM
Hello All,
I am trying to implement a grid which has a particular number of rows. This grid refreshes every 10 secs. When the grid refreshes, it changes the contents of any one of the rows. Is it possible to have that particular row to blink to visually indicate and emphasize the change of text? I tried the following but this is not exactly what I want:
grid.addListener(Events.CellClick, new Listener<GridEvent>()
{
public void handleEvent(GridEvent ge) {
El el=ge.getTargetEl();
el.blink(new FxConfig(1000));
}
});
Would appreciate any help.
Thanks,
Nicky
I am trying to implement a grid which has a particular number of rows. This grid refreshes every 10 secs. When the grid refreshes, it changes the contents of any one of the rows. Is it possible to have that particular row to blink to visually indicate and emphasize the change of text? I tried the following but this is not exactly what I want:
grid.addListener(Events.CellClick, new Listener<GridEvent>()
{
public void handleEvent(GridEvent ge) {
El el=ge.getTargetEl();
el.blink(new FxConfig(1000));
}
});
Would appreciate any help.
Thanks,
Nicky