BUG 000 momentarily reverted to rc5 fro pmTables (fix)

This commit is contained in:
Erik Amaru Ortiz
2011-09-05 12:47:25 -04:00
parent 69ffd4adfe
commit be0c90af87
3764 changed files with 11 additions and 7 deletions

14
workflow/engine/templates/pmTables/data.js Normal file → Executable file
View File

@@ -138,13 +138,13 @@ Ext.onReady(function(){
editor = new Ext.ux.grid.RowEditor({
saveText : _("ID_UPDATE"),
listeners : {
afteredit : {
fn:function(rowEditor, obj, data, rowIndex ){
if (data.phantom === true) {
//store.reload(); // only if it is an insert
}
}
}
afteredit : {
fn:function(rowEditor, obj, data, rowIndex ){
if (data.phantom === true) {
store.reload(); // <-- (just for old pmtables class engine) only if it is an insert
}
}
}
}
});
}