Hello.
I have a widget which have some Views. In the View A, I have some data arrays that it's are loaded in next view (View

CODE
KONtx.application.loadView("view-Detalle",{
img_rest : imagenesRestaurantes[this.getCellDataIndex()],
price_rest : preciosRestaurantes [this.getCellDataIndex()],
address_rest : direccionesRestaurantes[this.getCellDataIndex()],
hours_rest : horariosRestaurantes[this.getCellDataIndex()],
phone_rest : telefonosRestaurantes [this.getCellDataIndex()],
tipo_rest : tipo_cocina[this.getCellDataIndex()],
desc_rest : descripcionRestaurantes[this.getCellDataIndex()],
name_rest : nombresRestaurantes[this.getCellDataIndex()]});
I can to access for example at img_rest in "view-Detalle" using ' this.persist.img_rest ' . In this step no problem.
My problem is the opposite case. I have a View C, which updates datas from View B.
In View B
CODE
KONtx.application.loadView("view-CambioRest", {
numRest : numeroRest,
});
In View C
CODE
currentProfileData.set('numRest',numeroRestaurante);
self.persist.numRest = numeroRestaurante;
And I don't know how load ' self.persist.numRest ' in View B and show it in my widget.
Thanks all you