Author: sevein
Date: Fri Aug 19 12:46:21 2011
New Revision: 9551
Log:
Small fix in jQuery selector for radio/checkbox inputs in dialogs
Modified:
trunk/js/dialog.js
Modified: trunk/js/dialog.js
==============================================================================
--- trunk/js/dialog.js Fri Aug 19 12:32:51 2011 (r9550)
+++ trunk/js/dialog.js Fri Aug 19 12:46:21 2011 (r9551)
@@ -45,7 +45,7 @@
case 'radio':
case 'checkbox':
thisDialog.fields[this.name] = [];
- thisDialog.initialValues[this.name] = $('input[name=' +
this.name + ']', thisDialog.table).each(function ()
+ thisDialog.initialValues[this.name] = $('input[name="' +
this.name + '"]', thisDialog.table).each(function ()
{
thisDialog.fields[this.name].push(this);
})
--
You received this message because you are subscribed to the Google Groups
"Qubit Toolkit Commits" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/qubit-commits?hl=en.