我有兩個ko.observablearray。 其中一個數組是我從服務器獲得的一些值: `self.AllItems = ko.observableArray([]); function (data) {
for (var index = 0; index < data.length; index++) {
self.AllItems.push(data[index]);
我試圖將值設置爲我observableArray的元素,並得到一個錯誤,我不能解析: Uncaught TypeError: Property 'Locked' of object #<Object> is not a function
這是我的一段代碼我已經寫了: $(function() {
// -----------------------------------------
這些多個ObservableArrays將是該單個ObservableArray的單個元素。 我有兩個ObservableArrays像: self.matrix= ko.observableArray([
{ matrixElement: "" /*I Want to put "self.Criteria" observableArray here instead of "matri