• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

IgniteUI / igniteui-angular / 16053471080

03 Jul 2025 02:41PM UTC coverage: 4.981% (-86.4%) from 91.409%
16053471080

Pull #16021

github

web-flow
Merge 7c49966eb into 7e40671a1
Pull Request #16021: fix(radio-group): dynamically added radio buttons do not initialize

178 of 15753 branches covered (1.13%)

13 of 14 new or added lines in 2 files covered. (92.86%)

25644 existing lines in 324 files now uncovered.

1478 of 29670 relevant lines covered (4.98%)

0.51 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

5.56
/projects/igniteui-angular/src/lib/combo/combo.api.ts
1
import { IgxComboBase } from './combo.common';
2
import { Injectable } from '@angular/core';
3

4
/**
5
 * @hidden
6
 */
7
@Injectable()
8
export class IgxComboAPIService {
3✔
UNCOV
9
    public disableTransitions = false;
×
10
    protected combo: IgxComboBase;
11

12
    public get valueKey() {
UNCOV
13
        return this.combo.valueKey !== null && this.combo.valueKey !== undefined ? this.combo.valueKey : null;
×
14
    }
15

16
    public get item_focusable(): boolean {
17
        return false;
×
18
    }
19
    public get isRemote(): boolean {
20
        return this.combo.isRemote;
×
21
    }
22

23
    public get comboID(): string {
24
        return this.combo.id;
×
25
    }
26

27
    public register(combo: IgxComboBase) {
UNCOV
28
        this.combo = combo;
×
29
    }
30

31
    public clear(): void {
UNCOV
32
        this.combo = null;
×
33
    }
34

35
    public add_custom_item(): void {
UNCOV
36
        if (!this.combo) {
×
37
            return;
×
38
        }
UNCOV
39
        this.combo.addItemToCollection();
×
40
    }
41

42
    public set_selected_item(itemID: any, event?: Event): void {
UNCOV
43
        const selected = this.combo.isItemSelected(itemID);
×
UNCOV
44
        if (itemID === undefined) {
×
UNCOV
45
            return;
×
46
        }
UNCOV
47
        if (!selected) {
×
UNCOV
48
            this.combo.select([itemID], false, event);
×
49
        } else {
UNCOV
50
            this.combo.deselect([itemID], event);
×
51
        }
52
    }
53

54
    public is_item_selected(itemID: any): boolean {
UNCOV
55
        return this.combo.isItemSelected(itemID);
×
56
    }
57
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc