Untitled

 avatar
unknown
plain_text
3 years ago
329 B
6
Indexable
    checkDisableCheckBoxAll(wbsItem: any) {
        let isDisabled = false;
        this.wbsApi.getWbsProperties(wbsItem.id, this.constructTypeId).subscribe((res) => {
            if (res) {
                isDisabled = res.some(item => item.isMustFill === true);
            }
        });
        return undefined;
    }
Editor is loading...