Reputation: 595
I have a dialog box made through JQuery like this
<div class ="editable" id="div_David L. Kirp[instructor_status]"contenteditable="1">
<span class="text-error">Error: More than one user with same fname and lname</span<br/>
Users:<br/>
<span class="multiple-users">
 [CLICK HERE] Instructor ID: 65, Common Name: David Kirp</span<br/>
<span class="multiple-users">
 [CLICK HERE] Instructor ID: 17210, Common Name: David L. Kirp</span><br/><div class="update-dialog" title="Update Common Name">Which instructor do you want to update?<p><input type="radio" id="instructor_65" name="instructor" value="65"/><label for="instructor_65">
Instructor ID: 65, Common Name: David Kirp
</label></p>
<p><input type="radio" id="instructor_17210" name="instructor" value="17210"/>
<label for="instructor_17210">
Instructor ID: 17210, Common Name: David L. Kirp
</label></p>Which common name do you want to assign the instructor?<p><input type="radio" id="commonName_65" name="common_name" value="David Kirp"/><label for="commonName_65">
David Kirp
</label></p><p><input type="radio" id="commonName_17210" name="common_name" value="David L. Kirp"/><label for="commonName_17210">
David L. Kirp
</label></p></div><button class="update-button" type="button">Update Common Name of an Instructor</button></div>
<script>
$("div.update-dialog").dialog({
autoOpen: false,
dialogClass: 'dialogStyle',
resizable: false,
modal: true,
buttons: {
"Update": function() {
//$.load('update_common_name.php',
$( this ).dialog( "close" );
},
Cancel: function() {
$( this ).dialog( "close" );
}
}
});
$('div.editable').on('click', '.update-button', function () {
$(".update-dialog").dialog("open");
});
and I want it so that when I click on one of the radios, it will update the existing values to variables instructor_id and common_name (I eventually want to make an ajax request with them), like so:
$('input:radio').change(function () {
instructor_id = $(this).closest('input[name=instructor]:checked').val();
common_name = $(this).closest('input[name=common_name]:checked').val();
// alert is for testing
alert(instructor_id + common_name);
});
</script>
However, when I test it out, the alert message returns something like "65undefined" and "undefinedDavid L. Kirp" rather than "65David L. Kirp", indicating that not both variables are being initialized. How can I fix this?
Upvotes: 0
Views: 358
Reputation: 388316
The error is perfectly sensible in your case because when you are changing instructor
- $(this).closest('input[name=instructor]:checked')
gives you the checked radio but $(this).closest('input[name=common_name]:checked')
will fail to find the element because the common_name
radio is not a ancestor of instructor
. It can happen other way also, if you select a common_name
the instructor will give undefined
Try (this could still give undefined for one of the fields till you select values from both the sets of values)
$('input:radio').change(function () {
var instructor_id = $(this).closest('.update-dialog').find('input[name=instructor]:checked').val();
var common_name = $(this).closest('.update-dialog').find('input[name=common_name]:checked').val();
// alert is for testing
alert(instructor_id + common_name);
});
Demo: Fiddle
Upvotes: 1