You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p>Here you can use whatever you want. You can use other directives, binding, etc.</p>
109
+
<inputtype="submit"wz-nextvalue="Continue" />
110
+
</wz-step>
111
+
<wz-steptitle="Continuing">
112
+
<h1>Continuing</h1>
113
+
<p>You have continued here!</p>
114
+
<inputtype="submit"wz-nextvalue="Go on" />
115
+
</wz-step>
116
+
<wz-steptitle="More steps">
117
+
<p>Even more steps!!</p>
118
+
<inputtype="submit"wz-nextvalue="Finish now" />
119
+
</wz-step>
120
+
</wizard>
121
+
````
122
+
Controller
123
+
````javascript
124
+
//this will cause the step to be hidden
125
+
$scope.disabled='true';
126
+
````
127
+
128
+
98
129
## Wizard Step Validation
99
130
The wzStep directive has the following options as attributes:
100
131
***canexit**: Here you can reference a function from your controller. If this attribute is listed the funtion must return true in order for the wizard to move to the next step. Promises are supported but must resolve with a thruthy value. If it is ommitted no validation will be required.
0 commit comments