Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the best way of cloning/copying an observablearray in knockoutJS?

Tags:

knockout.js

Question says it all really. I want to copy an observable array to another in KnockoutJS.

like image 777
jaffa Avatar asked Jun 28 '11 15:06

jaffa


1 Answers

To clone an observableArray you would want to do:

var viewModel = {     array1: ko.observableArray(["one", "two"]),     array2: ko.observableArray() };  viewModel.clone = function() {    viewModel.array1(viewModel.array2.slice(0)); }; 

If you want to just do a copy, then you would do:

viewModel.array1(viewModel.array2()); 

The problem with the second example is that the underlying array is the same, so pushing to array1 or array2 would result in both having the new value (as they both point to the same array).

like image 199
RP Niemeyer Avatar answered Sep 20 '22 12:09

RP Niemeyer