Hello,
I have a model item that I want to be on top for only a specific part of my sequence. How do I toggle this on and off using java script? Currently I am trying: $scope.view.wdg['modelItem-1']['always on top'] = true; but this does not seem to be correct. Thank you!
Solved! Go to Solution.
The correct syntax for "Always on top" is:
$scope.view.wdg['modelItem-1']['decal'] = true;
The correct syntax for "Always on top" is:
$scope.view.wdg['modelItem-1']['decal'] = true;
Thank you! Is there a place where I can look up the javascript syntax for various fields?