from server I get either an A or a B or a G for type
What I want it to show is a drop down of a text Gamma if it is G and Alpha if it is A and Beta if it is B. Also that item to be selected ... Not sure how to do this.
Here is what I get from my back end.. an observable array of
self.AllValues = ko.observableArray([{"ID":1,"Type":"A" .... }]);
I have something like below the type is A B OR G ...
<td class="label">Drop-down list:</td>
<td><select data-bind="options: optionValues, value: selectedOptionValue"></select>
</td>