Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a ko.observable property of an object called "totalLength". While using application I would like to physically amend new value to this property. How can I do that?

I can preview the value of the demanded property by displaying:

alert(feature.totalLength());

so I know that it is the one. But when I assign a new value to it:

feature.totalLength() = 10;

I get an error:

ReferenceError: invalid assignment left-hand side

Why?

share|improve this question
Because you try to assign value to a function call. Any idea what are the () for? If no fill that gap knowledge of yours – kidwon Jan 4 at 15:04

2 Answers

up vote 1 down vote accepted

ko.observable is a function so you need to set the value like this feature.totalLength(10).

share|improve this answer
Thanks very much! – Bartosz Jan 4 at 15:10

You can change value of observable like this:

feature.totalLength(10)
share|improve this answer
Thanks very much! – Bartosz Jan 4 at 15:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.