Question
Interact with a widget in a specific step in a certain sequence
Hi All,
I usually use the following code for making appear and disappear the widgets in a specific step in sequence:
$scope.$on('newStep', function() {
switch($scope.view.wdg['model-3']['currentStep']) {
case 3:
$scope.setWidgetProp( "Warning", "text", 'Note: Only for T200 & T600 Series');
break;
}
});
However, this time in model-3 I have three different sequences and not just one. With this code, the widgets appear in all the sequences. What can I add to specify the sequence?
Thank you!

