NativeScript camera and saving various pictures -
i trying take various photos , take them want them appear in view. idea add photo objects model observable , repeater in view have them displayed. note instead of image object adding simple strings noteimages debug it. what have is: the view model: function noteviewmodel(info) { info = info || {}; var viewmodel = new observable({ id: info.id || null, title: info.title || "title default", description: info.description || "description default" noteimages: [{src: "xxxx"}, {src: "yyyyyy"}] }); return viewmodel; } the "controller": ... var noteviewmodel = new noteviewmodel(); exports.loaded = function(args) { console.log("loading note view...") page = args.object; page.bindingcontext = noteviewmodel; }; ... exports.takephoto = function(){ cameramodule.takepicture({width: 300, height: 300, keepaspectratio: true}).then(function(imagesource) { var ima