cloudstack 3.0 UI - listView - fix a bug that table row was not removed from listView after Remove action on listView completed.

This commit is contained in:
Jessica Wang 2012-03-21 11:18:57 -07:00
parent 0db22e44e8
commit 995a338e3c
1 changed files with 2 additions and 2 deletions

View File

@ -332,8 +332,8 @@
remove: function($instanceRow, args) {
uiActions.standard($instanceRow, args, {
complete: function(args) {
$instanceRow.remove();
complete: function(args, $newRow) {
$newRow.remove();
}
});
},