X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=Pman.Lock.js;h=b44696d717e5f89f2c10f4586ba3846ee5859d79;hp=004a4b8a8512af9ae91897132655e6c2a83b9da1;hb=c1af5e6bb6064e88469651271f4d9aaff34d69c0;hpb=61e3734966ca90728ab8fce2ee1f6b2f99959c56 diff --git a/Pman.Lock.js b/Pman.Lock.js index 004a4b8a..b44696d7 100644 --- a/Pman.Lock.js +++ b/Pman.Lock.js @@ -48,8 +48,8 @@ Roo.apply(Pman.Lock.prototype, { { Roo.log('callLock'); force = force || 0; - var _t = this - Pman.Request({ + var _t = this; + new Pman.Request({ url : baseURL + '/Core/Lock/lock', params : { on_table : this.cfg.table, @@ -59,9 +59,9 @@ Roo.apply(Pman.Lock.prototype, { failure : function() { Roo.MessageBox.alert("Error", "Lock Request failed, please try again"); }, - success : function(data) + success : function(res) { - + var data = res.data; Roo.log(data); if (!force && typeof(data) == 'object') { _t.confirmBreak(data); @@ -98,7 +98,7 @@ Roo.apply(Pman.Lock.prototype, { unlock : function() { - Pman.Request({ + new Pman.Request({ url : baseURL + '/Core/Lock/unlock', params : { id : this.id