# This patch file was generated by NetBeans IDE
# This patch can be applied using context Tools: Patch action on respective folder.
# It uses platform neutral UTF-8 encoding and \n newlines.
# Above lines and this line are ignored by the patching process.
Index: editablefields.js
--- editablefields.js Base (BASE)
+++ editablefields.js Locally Modified (Based On LOCAL)
@@ -6,9 +6,9 @@
 
       // There is only one editable field in that form, we can hide the submit
       // button.
-      if ($this.find('input[type=text],textarea,select').length == 1) {
+      if ($this.find('input[type=text],input[type=checkbox],textarea,select').length == 1) {
         $this.find('input.form-submit').hide();
-        $this.find('input[type=text],textarea,select').change(function() {
+        $this.find('input[type=text],input[type=checkbox],textarea,select').change(function() {
           $this.find('input.form-submit').triggerHandler('click');
         });
       }
