Community Tip - You can Bookmark boards, posts or articles that you'd like to access again easily! X
Hello, friends!!
This is a simple (and probably a silly) question, but I'd like to create a condition if a button is clicked, without binding the click event to a function, as normally used.
Below, a simple example: I'd like to skip a step if the "Yes" button is clicked:
if(stepNumber == 1) { $scope.view.wdg['labelStep'].text = 'Is the light on?'
if($scope.view.wdg.['buttonYes'].click) //this is where I'm stuck at. The 'click' event is not called by the ".click" syntax, since it doesn't seem to accept it.
{
stepNumber = 3 //if the user clicks in the "Yes" button, it would skip the next step from 2 to 3.
}
}
This is probably a simple syntax error!
Solved! Go to Solution.
Hello again, guys!
It turns out that the best method is creating a JS function on the button's click event and creating function calls inside its code so it can take condition-based actions.
Thanks for your time, anyway!!
Hello again, guys!
It turns out that the best method is creating a JS function on the button's click event and creating function calls inside its code so it can take condition-based actions.
Thanks for your time, anyway!!