From 0201621da5d27a5b92f1c76e1d3c015aa860cd0a Mon Sep 17 00:00:00 2001 From: mYkon Date: Tue, 22 May 2012 17:32:52 +0300 Subject: [PATCH] Didnt find the submitted data in the callback. I had to get the submitted value of a changed select field. --- jquery.jeditable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jquery.jeditable.js b/jquery.jeditable.js index eb8a911..1bc047b 100644 --- a/jquery.jeditable.js +++ b/jquery.jeditable.js @@ -347,7 +347,7 @@ $(self).html(result); } self.editing = false; - callback.apply(self, [result, settings]); + callback.apply(self, [result, settings, submitdata]); if (!$.trim($(self).html())) { $(self).html(settings.placeholder); }