From c1bb8d1ecd2a19d3574076536753039437ecf672 Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Fri, 30 Apr 2010 19:30:44 +0000 Subject: [PATCH] #767268 by sun, rfay: Fixed #states doesn't work correctly with radio buttons. --- misc/states.js | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/misc/states.js b/misc/states.js index 04a1a6c0b16..41b30488bbc 100644 --- a/misc/states.js +++ b/misc/states.js @@ -247,11 +247,22 @@ states.Trigger.states = { } }, + // For radio buttons, only return the value if the radio button is selected. value: { 'keyup': function () { + // Radio buttons share the same :input[name="key"] selector. + if (this.length > 1) { + // Initial checked value of radios is undefined, so we return false. + return this.filter(':checked').val() || false; + } return this.val(); }, 'change': function () { + // Radio buttons share the same :input[name="key"] selector. + if (this.length > 1) { + // Initial checked value of radios is undefined, so we return false. + return this.filter(':checked').val() || false; + } return this.val(); } },