Signed-off-by: Bill Erickson <berickxx@gmail.com>
Signed-off-by: Jane Sandberg <js7389@princeton.edu>
Signed-off-by: Galen Charlton <gmc@equinoxOLI.org>
<eg-combobox #combobox
+ [required]="required"
[startId]="initialGroupId" [entries]="cboxEntries"
(onChange)="propagateCboxChange($event)"
i18n-placeholder placeholder="Profile Group">
// Set the initial value by ID
@Input() initialGroupId: number;
+ @Input() required = false;
+
cboxEntries: ComboboxEntry[] = [];
profiles: {[id: number]: IdlObject} = {};