Dokumentation
parent
a7fa0276cd
commit
e711990650
|
|
@ -36,13 +36,20 @@ export const MY_DATE_FORMATS = {
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
export class NttGanttComponent implements OnInit {
|
export class NttGanttComponent implements OnInit {
|
||||||
|
|
||||||
|
/**###################################################################### Variable Declarations and Definitions ######################################################################*/
|
||||||
|
|
||||||
|
/**############################### ViewChild Components /**###############################*/
|
||||||
@ViewChild('ganttObject')
|
@ViewChild('ganttObject')
|
||||||
public ganttDefault!: GanttComponent;
|
public ganttDefault!: GanttComponent;
|
||||||
|
|
||||||
@ViewChild('plantimeComponent')
|
@ViewChild('plantimeComponent')
|
||||||
public plantimeComponent!: PlanTimeBarComponent;
|
public plantimeComponent!: PlanTimeBarComponent;
|
||||||
|
|
||||||
@ViewChild(MatPaginator) paginator: MatPaginator;
|
@ViewChild(MatPaginator) paginator: MatPaginator;
|
||||||
|
|
||||||
|
/**############################### Default Variables /**###############################*/
|
||||||
|
|
||||||
public range = new FormGroup({
|
public range = new FormGroup({
|
||||||
start: new FormControl<Date | null>(new Date('12/01/2022')),
|
start: new FormControl<Date | null>(new Date('12/01/2022')),
|
||||||
end: new FormControl<Date | null>(new Date('01/31/2024')),
|
end: new FormControl<Date | null>(new Date('01/31/2024')),
|
||||||
|
|
@ -105,6 +112,7 @@ export class NttGanttComponent implements OnInit {
|
||||||
public oldSort = null;
|
public oldSort = null;
|
||||||
public planTimes : any[] = [];
|
public planTimes : any[] = [];
|
||||||
|
|
||||||
|
/**###################################################################### Initial Loading functions ######################################################################*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The constructor injects required dependencies
|
* The constructor injects required dependencies
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue