Community Tip - Stay updated on what is happening on the PTC Community by subscribing to PTC Community Announcements. X
I have an application where I'm reusing a popup (There are 4 different buttons that cause the same popup to be displayed). Each time the popup is displayed, I'm clearing out any data that was in it, but I can't figure out the syntax to un-check a checkbox. I've tried .checked = false or .selected = false but no luck. Any suggestions?
Solved! Go to Solution.
try $scope.view.wdg['checkbox-2']['value'] = false;
or, .... .value=false;
Thanks, that worked!