2
Fork 0

[svn r260] made swing work

This commit is contained in:
willemc 2007-08-02 03:56:02 +02:00
parent 0f55185807
commit 848eb431d6
14 changed files with 825 additions and 127 deletions

View file

@ -44,6 +44,9 @@ public class DeleteRowAction extends AbstractVascAction implements RowVascAction
}
public void doRowAction(VascTable table,Object rowObject) throws Exception {
table.getVascDataSource().delete(rowObject);
if (rowObject==null) {
return;
}
table.getVascViewRenderer().renderDelete(table,rowObject);
}
}