Update: I posted my code solution as an answer down below, which could help if someone wants to see a complete (and fairly simple) example of a KnockoutJs custom binding.
Problem:
When I use jQuery to set the checked status of a radio button... then it seems as if my KnockoutJs viewmodel does not track this change!
Scenario:
I have multiple large DIVs, and each DIV wraps one radio button. (This makes it easier for users to click the radio button by having a larger area to click on.) When the user clicks somewhere in the div, I want to check the radio button for them.... which works just fine. However, when attempting to read the value from the viewModel property bound to this radio button.... it has not been updated. :-(
The only time the viewModel is updated is if I click DIRECTLY on the radio button inside the div. If I just click somewhere inside the div (which executes my jQuery), then.... even though the radio visibly becomes checked.... the knockoutjs viewModel property has not been updated with a new value.
Question: Can someone please tell me how to change the checked status of a radio button using jQuery and have KnockoutJs play nicely and be updated as well?
Code is here, and I will also include a jsFiddle.
<script>
$(document).ready(function ()
{
var self = this;
function ViewModel()
{
this.HourlyOrSalary = ko.observable("");
}
viewModel = new ViewModel();
ko.applyBindings(viewModel, document.getElementById('divKnockout'));
// Click event for DIV around radio button
$('.divRadioWrapper').click(function ()
{
var radio = $(this).find('input[type="radio"]');
radio.attr('checked', true);
});
// Just for testing...
$('#testButton').click(function ()
{
var viewModelVal = viewModel.HourlyOrSalary();
alert('Value --> ' + viewModelVal);
});
});
</script>
<style>
.divRadioWrapper {
background-color: #dde9f5; /*#d8f5f0;*/ /* #dcfbff; */
width: 75px;
padding: 5px 10px;
border: 1px solid lightgray;
cursor: pointer;
margin-bottom: 10px;
}
</style>
<div id="divKnockout">
<div class="divRadioWrapper">
<input type="radio" name="formType" value="hourly" data-bind="checked: HourlyOrSalary"
/>Hourly</div>
<div class="divRadioWrapper">
<input type="radio" name="formType" value="salary" data-bind="checked: HourlyOrSalary"
/>Salary</div>
<br />
<input type="button" id="testButton" value="Display viewModel data" />
</div>