IDEMPIERE-127 Implement Recent Items dashboard - Fixed exception can't access component of another desktop.

(transplanted from abf4d4934693a93d49ba37c397a4f16074e2c36b)
This commit is contained in:
Heng Sin Low 2012-02-02 18:26:54 +08:00
parent 42bef1baef
commit befd71eb22
1 changed files with 8 additions and 3 deletions

View File

@ -202,10 +202,15 @@ public class DPRecentItems extends DashboardPanel implements EventListener {
@Override
public void refresh(ServerPushTemplate template)
{
refresh();
bxRecentItems.invalidate();
{
template.execute(this);
}
@Override
public void updateUI() {
refresh();
bxRecentItems.invalidate();
}
}