Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
It should actually work:
But it should be better to group the both function in the js code - function defintion
$scope.app.myNewFunction= function(){
$scope.setSequnece("sequence1");
//or $scope.app.setSequnece("sequence1");
// if defintion in app
$sope.B1();
}
and then call app.myNewFunction(); in UI
It should actually work:
But it should be better to group the both function in the js code - function defintion
$scope.app.myNewFunction= function(){
$scope.setSequnece("sequence1");
//or $scope.app.setSequnece("sequence1");
// if defintion in app
$sope.B1();
}
and then call app.myNewFunction(); in UI