Visual Studio Knockout.js Intellisense
便利!
(検証環境は、VS2013.4 Ultimate です)
db > tab > tab
ctrl + space > : > ctrl + space
ViewModel
function SampleViewModel() { this.firstName = ko.observable("hoge"); this.lastName = ko.observable("fuga"); this.children = ko.observableArray([new ChildModel(), new ChildModel()]) } function ChildModel() { this.test1 = ko.observable(0); this.test2 = ko.observable(99); } ko.applyBindings(new SampleViewModel(());