how can I refer the widget property in multiple view environment?
Hi, all
I want to refer the widget property value in multiple view.
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
$scope.test = function(){
$scope.app.view['Home'].wdg['label-1']['text'] = "test";
}
I coded like upper to set the property in other view.
but I got the error log like below.
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Error evaluating button-1 click JS: test();
TypeError: Cannot read properties of undefined (reading 'wdg')
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
why I am not able to set the property value in other view?

