<ul data-bind='foreach:MetaData'> <li> <input type="text" data-bind='value:{{Name}}'> //how to bind to the content of Name?? </li></ul>
function ViewModel(){ var self = this; self.MetaData = [{ Name: 'FirstName' }, { Name: 'LastName'}]; self.FirstName = ko.observable(); self.LastName = ko.observable();}var vm = new ViewModel();ko.applyBindings(vm);--
You received this message because you are subscribed to the Google Groups "KnockoutJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email to knockoutjs+...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--