my dropdown list is returning [object][object] instead of the value. I am getting the values from an sql table. Any assistance would be great. Thanks in advance.
viewmodel
vm.addObservables('selected');
vm.addObservableArrays('list');
_Integration.GetAll('sqlTable').then(function(vals){
vm.list(vals);
});
html
<select id="dropDown" name="dropDown"
data-bind='options: list,
value: selected,
optionsCaption: "Choose...",
autoSave: true'>
</select>