Is it possible to bind a Knockout observable property to a radio button using a value binding?
Here\'s what I\'m trying to do, but the value ends up being the string \"[
I needed this too. My solution was similar to John Earles except I used a computed
instead of subscribe
:
self.selectedVehicleGroup = ko.computed(function(){
return ko.utils.arrayFirst(self.availableGroups(), function (group) { return group.name() == self.selectedGroupOption(); });
});
http://jsfiddle.net/JcPXy/91/