We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add this snippet to the SelectPageComponent demo page:
SelectPageComponent
// ... selectControl = new FormControl(['breach'], Validators.required); // ...
And change the template to:
<!-- ... --> <h4>Basic</h4> <ngx-select [filterable]="false" [label]="'Attack Type'" [formControl]="selectControl" data-cy="attackType"> <ngx-select-option name="Breach" value="breach"></ngx-select-option> <ngx-select-option name="DDOS" value="ddos"></ngx-select-option> <ngx-select-option name="Physical" value="physical"></ngx-select-option> </ngx-select> Is valid: {{ selectControl.valid }} <!-- ... -->
The text was updated successfully, but these errors were encountered:
Hypercubed
No branches or pull requests
Screenshot
Steps to reproduce
Add this snippet to the
SelectPageComponent
demo page:And change the template to:
The text was updated successfully, but these errors were encountered: