Why does this binding fail with a "value not found" exception?
<select data-bind="options: $root.arr, optionsValue: key, optionsText: value"></select>
The options array's data is this:
ko.observableArray ([
{key: 'foo', value: '1'},
{key: 'bar', value: '2'}
])
I already solved my own problem but laying down a StackOverflow breadcrumb trail so others won't waste their time like I did trying to figure this out. ;-)
Quotes are required around property names used in optionsText and optionsValue. Like this:
I'd assumed that:
options
binding created a new binding context likewith
andforeach
dotext
binding where you can just specify the property name and KO magically binds to the propertiesBoth assumptions were wrong, as I realized after an hour of stepping through the KO sources trying to figure out what I was doing wrong. Arrrrgh!
Instead, if you're not using a function to pull out the value or text for each option, and you want to access a property instead, you need to enclose the property name in quotes. This is shown in the documentation if you read the example code carefully enough. Which I didn't. ;-(