Use $.prop() to query checkboxes

This commit is contained in:
David Craig 2014-12-03 13:59:42 +13:00
parent 319d1972b1
commit c33b8ddec1
1 changed files with 4 additions and 4 deletions

View File

@ -717,16 +717,16 @@ class UserDefinedForm_Controller extends Page_Controller {
// and what should we evaluate
switch($dependency['ConditionOption']) {
case 'IsNotBlank':
$expression = ($checkboxField || $radioField) ? '$(this).attr("checked")' :'$(this).val() != ""';
$expression = ($checkboxField || $radioField) ? '$(this).prop("checked")' :'$(this).val() != ""';
break;
case 'IsBlank':
$expression = ($checkboxField || $radioField) ? '!($(this).attr("checked"))' : '$(this).val() == ""';
$expression = ($checkboxField || $radioField) ? '!($(this).prop("checked"))' : '$(this).val() == ""';
break;
case 'HasValue':
if ($checkboxField) {
$expression = '$(this).attr("checked")';
$expression = '$(this).prop("checked")';
} else if ($radioField) {
// We cannot simply get the value of the radio group, we need to find the checked option first.
$expression = '$(this).parents(".field, .control-group").find("input:checked").val()=="'. $dependency['Value'] .'"';
@ -753,7 +753,7 @@ class UserDefinedForm_Controller extends Page_Controller {
break;
default: // ==HasNotValue
if ($checkboxField) {
$expression = '!$(this).attr("checked")';
$expression = '!$(this).prop("checked")';
} else if ($radioField) {
// We cannot simply get the value of the radio group, we need to find the checked option first.
$expression = '$(this).parents(".field, .control-group").find("input:checked").val()!="'. $dependency['Value'] .'"';