From: phasefx Date: Wed, 16 Dec 2009 06:12:27 +0000 (+0000) Subject: Checkboxes in the patron editor are getting a value of 'on' (a change in dojo?).... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=d8ed51bafaa75e50f2042086bb3f851f6f01878a;p=contrib%2FConifer.git Checkboxes in the patron editor are getting a value of 'on' (a change in dojo?). Bill, check me on this one. git-svn-id: svn://svn.open-ils.org/ILS/trunk@15171 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/web/js/dojo/openils/widget/AutoFieldWidget.js b/Open-ILS/web/js/dojo/openils/widget/AutoFieldWidget.js index 1be08b789e..cee986264c 100644 --- a/Open-ILS/web/js/dojo/openils/widget/AutoFieldWidget.js +++ b/Open-ILS/web/js/dojo/openils/widget/AutoFieldWidget.js @@ -81,6 +81,7 @@ if(!dojo._hasResource['openils.widget.AutoFieldWidget']) { case 'bool': switch(value) { case 'true': return 't'; + case 'on': return 't'; case 'false' : return 'f'; case 'unset' : return null; case true : return 't';