This is my fiddle. http://jsfiddle.net/aaScC/4/
In the example, for the StartDate property custom binding handler is created to get jquery datepicker. But its not working please help.
var Goal = function(goal) { this.GoalTitle = ko.observable(goal?goal.GoalTitle:""); this.StartDate = ko.observable(goal?goal.StartDate:""); this.lstSubGoals = ko.observableArray(goal ? ko.utils.arrayMap(goal.lstSubGoals, function (goal) { return new Goal(goal) }) : []); }