The <igx-drop-down-item> is a container intended for row items in
a <igx-drop-down> container.
Constructors
Section titled "Constructors"IgxDropDownGroupComponent
new IgxDropDownGroupComponent(): IgxDropDownGroupComponent Returns IgxDropDownGroupComponent
Properties
Section titled "Properties"disabled
Section titled "disabled"Sets/gets if the item group is disabled
const myDropDownGroup: IgxDropDownGroupComponent = this.dropdownGroup;
// get
...
const groupState: boolean = myDropDownGroup.disabled;
...
//set
...
myDropDownGroup,disabled = false;
...<igx-drop-down-item-group [label]="'My Items'" [disabled]="true">
<igx-drop-down-item *ngFor="let item of items[index]" [value]="item.value">
{{ item.text }}
</igx-drop-down-item>
</igx-drop-down-item-group>NOTE: All items inside of a disabled drop down group will be treated as disabled
disabled: boolean = false Defined in projects/igniteui-angular/drop-down/src/drop-down/drop-down-group.component.ts:66
label
Section titled "label"Sets/gets the label of the item group
const myDropDownGroup: IgxDropDownGroupComponent = this.dropdownGroup;
// get
...
const myLabel: string = myDropDownGroup.label;
...
// set
...
myDropDownGroup.label = 'My New Label';
...<igx-drop-down-item-group [label]="'My new Label'">
...
</igx-drop-down-item-group> label: string Defined in projects/igniteui-angular/drop-down/src/drop-down/drop-down-group.component.ts:90
Accessors
Section titled "Accessors"labelledBy
Section titled "labelledBy"get labelledBy(): string Defined in projects/igniteui-angular/drop-down/src/drop-down/drop-down-group.component.ts:25
Returns string