Skip to content

Instantly share code, notes, and snippets.

@hallgren
Created September 21, 2011 11:40
Show Gist options
  • Save hallgren/1231853 to your computer and use it in GitHub Desktop.
Save hallgren/1231853 to your computer and use it in GitHub Desktop.
knockoutjs readonlyValue
ko.bindingHandlers['rvalue'] = {
'init': function (element, valueAccessor, allBindingsAccessor) {
var value = ko.utils.unwrapObservable(valueAccessor());
ko.selectExtensions.writeValue(element, value);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment