Hi Subhabrata,
Try this:
app.to("idMySecondViewId",oPassjson); // trigger navigation and hand over a data object
//In the second view
page2.addEventDelegate({
onBeforeShow: function(evt) {
var receivedProductId= evt.data.productId;
var receivedProductName= evt.data.productName;
//your code
}
});
Regards,
Naren L Naik