Hi @Jairam, you can create an object with two views and apply bindings to the object:
var profileModel = {
first: ko.observable("Bob"),
last: ko.observable("Smith")
};
var shellModel = {
header: ko.observable("Administration"),
sections: ["profile", "settings", "notifications"],
selectedSection: ko.observable()
};
var viewModel = {
subModelA: profileModel ,
subModelB: shellModel
};
ko.applyBindings(viewModel);
source
share