We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f362d1 commit 83e186cCopy full SHA for 83e186c
src/bootstrap/src/lib/types/select.ts
@@ -6,6 +6,7 @@ import { FieldType } from '@ngx-formly/core';
6
template: `
7
<select *ngIf="to.multiple; else singleSelect" class="form-control"
8
multiple
9
+ [class.custom-select]="to.customSelect"
10
[formControl]="formControl"
11
[class.is-invalid]="showError"
12
[formlyAttributes]="field">
@@ -22,6 +23,7 @@ import { FieldType } from '@ngx-formly/core';
22
23
<ng-template #singleSelect>
24
<select class="form-control"
25
26
27
28
29
<option *ngIf="to.placeholder" value="">{{ to.placeholder }}</option>
0 commit comments