@wjya/ngx-webapp-icpc.group.pms
Version:
angular webapp : icpc.group.pms
26 lines (25 loc) • 944 B
TypeScript
import { DataSourceHelper } from '../../service/data-source.helper';
import { UserStorageService } from '@wjya/ngx-webapp-fx';
import { OnInit, EventEmitter } from '@angular/core';
import { FormGroup, FormControl, FormBuilder } from '@angular/forms';
export declare class CommunityDialogComponent implements OnInit {
private fb;
private dataSourceHelper;
private userStorageService;
clickSave: EventEmitter<any>;
validateForm: FormGroup;
private dataSource;
modalIsVisible: boolean;
private communityGroupId;
options: any[];
private data;
constructor(fb: FormBuilder, dataSourceHelper: DataSourceHelper, userStorageService: UserStorageService);
getFormControl(name: any): FormControl;
ngOnInit(): void;
setFormValue(dataRow: any): void;
handleCancel(): void;
onSave(value: any): void;
resetForm(): void;
loadAll(): void;
private tree2Paint;
}