File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/app/lists/combo/combo-features Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11
22< igx-combo #combo class ="combo " [data] ="lData " [displayKey] ="'field' " [valueKey] ="'field' "
33 placeholder ="Location(s) " searchPlaceholder ="Search... " [allowCustomValues] ="customValues "
4- (addition) ="handleAddition($event) " [filteringOptions ] ="{ filterable } "
4+ (addition) ="handleAddition($event) " [disableFiltering ] ="disableFiltering "
55 [showSearchCaseIcon] ="showSearchCaseIcon " [itemsMaxHeight] ="255 " [disabled] ="disabled ">
66</ igx-combo >
77
8- < igx-switch [(ngModel)] ="filterable " > Enable Filtering</ igx-switch > < br />
9- < igx-switch [disabled] ="!filterable " [(ngModel)] ="showSearchCaseIcon "> Show Case-sensitive Icon</ igx-switch > < br />
8+ < igx-switch [(ngModel)] ="disableFiltering " > Disable Filtering</ igx-switch > < br />
9+ < igx-switch [disabled] ="disableFiltering " [(ngModel)] ="showSearchCaseIcon "> Show Case-sensitive Icon</ igx-switch > < br />
1010< igx-switch [(ngModel)] ="customValues "> Allow Custom Values</ igx-switch > < br />
1111< igx-switch (change) ="enableGroups($event) "> Enable Grouping</ igx-switch > < br />
1212< igx-switch [(ngModel)] ="disabled "> Disable Combo</ igx-switch >
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ export class ComboFeaturesComponent implements OnInit{
1414 // eslint-disable-next-line @typescript-eslint/naming-convention
1515 public GROUP_KEY = 'region' ;
1616 public lData : any [ ] ;
17- public filterable = true ;
17+ public disableFiltering = false ;
1818 public showSearchCaseIcon = false ;
1919 public customValues = true ;
2020 public disabled = false ;
You can’t perform that action at this time.
0 commit comments