I want to make my data accessible outside of my view model. So I created a view model object but I'm having trouble binding its properties. Note that everything is working properly inside my view model.
Basically a simplified pseudo-code:
function Users() {
name;
date;
}
function userHealthModel() {
function createUsers() { new Users[] };
}
self.userModel = ko.observable(new userHealthModel());
self.userModel.createUsers();
If I call the createUsers
method inside my model my bind works fine.
Here is a jsFiddle, note my problem is all the way at the end of the JS, I mented it: /
I'm new to JS and KO. not really sure how to use $root, $parent, etc. Please help a fellow programming enthusiast! Many thanks in advance!
I want to make my data accessible outside of my view model. So I created a view model object but I'm having trouble binding its properties. Note that everything is working properly inside my view model.
Basically a simplified pseudo-code:
function Users() {
name;
date;
}
function userHealthModel() {
function createUsers() { new Users[] };
}
self.userModel = ko.observable(new userHealthModel());
self.userModel.createUsers();
If I call the createUsers
method inside my model my bind works fine.
Here is a jsFiddle, note my problem is all the way at the end of the JS, I mented it: http://jsfiddle/fourgates/jpk22/1/
I'm new to JS and KO. not really sure how to use $root, $parent, etc. Please help a fellow programming enthusiast! Many thanks in advance!
Share Improve this question edited Apr 5, 2013 at 9:04 david.s 11.4k6 gold badges52 silver badges83 bronze badges asked Apr 1, 2012 at 0:22 Phil NinanPhil Ninan 1,1981 gold badge14 silver badges23 bronze badges 2- Please ask a specific question instead of posting just a big bunch of code that somehow "does not work". You got already a lot set up, so where exactly are you struggling? – Niko Commented Apr 1, 2012 at 1:26
- im sorry please excuse my laziness i was very tired when i wrote this, just took a nap. i rewrote my question with a jsfiddle. but basically im having trouble binding properties of a viewModel object i made, outside of my view model. – Phil Ninan Commented Apr 1, 2012 at 2:45
1 Answer
Reset to default 10I'm still not 100% sure if I understand what you're trying to do, but here are some thoughts about the code in your fiddle:
If you have something like
var self = this;
in the global scope (= not in a function), this
points to the window object. Therefore this does not make any sense.
self.userModel = ko.observable(new userHealthModel());
Creating an observable of a view model is not necessary - you don't expect the whole model to change, right? It will always stay a user model and not suddenly bee a "message model" or whatever.
If you want to call a method of your view model from the outside, just make an instance:
var userModel = new userHealthModel();
userModel.createUsers();
// Use "userModel" to access the methods and properties
// like you're using "self" inside the view model:
userModel.users2()[1].userId(5);
// now apply the binding to THE SAME view model
ko.applyBindings(userModel);
http://jsfiddle/jpk22/3/
If this isn't what you were looking for, let me know!