From 685db48a794815b45dad5197194c1d0c3a6c8e6a Mon Sep 17 00:00:00 2001 From: Aris Feryanto Date: Wed, 27 Jul 2011 17:49:40 +0800 Subject: [PATCH] Grid edit: fix bug - edited cell not saved when clicking on 'Save edited data' button, while the edit area still shown --- js/makegrid.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/makegrid.js b/js/makegrid.js index 5fe73e5833..6fd1301ae8 100644 --- a/js/makegrid.js +++ b/js/makegrid.js @@ -1371,6 +1371,7 @@ } }); $('.save_edited').click(function() { + g.hideEditCell(); g.postEditedCell(); }); $(window).bind('beforeunload', function(e) {