removed horizontal scrolling
parent
430619e622
commit
5875322682
|
|
@ -4,3 +4,7 @@
|
|||
opacity: 0.9;
|
||||
filter: alpha(opacity = 90);
|
||||
}
|
||||
|
||||
body, html {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
|
@ -210,7 +210,7 @@
|
|||
}
|
||||
|
||||
.clearFilter:hover {
|
||||
background-color: rgba(255, 255, 255, 0.729);
|
||||
background-color: rgba(255, 255, 255, 0.804);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -281,11 +281,13 @@ export class NttGanttComponent implements OnInit {
|
|||
|
||||
this.columns = [
|
||||
{ field: 'TaskName', headerText: 'Kurzbeschreibung', width: 350 },
|
||||
{ field: 'stateName', headerText: 'Status', width: 350},
|
||||
{ field: 'vertragName', headerText: 'Vertrag / Provider Cluster', width: 150 },
|
||||
{ field: 'supportGroup', headerText: 'Gewählte Support Gruppe' },
|
||||
{ field: 'StartDate', headerText: 'Geplantes Start-Datum', format : {type:'date', format:'dd.MM.yyyy'}},
|
||||
{ field: 'stateName', headerText: 'Status', width: 250 },
|
||||
{ field: 'plantime', headerText: 'Planzeit in H', width: 100 },
|
||||
{ field: 'StartDate', headerText: 'Geplantes Start-Datum', format: { type: 'date', format: 'dd.MM.yyyy' } },
|
||||
{ field: 'vertragName', headerText: 'Vertrag / Provider Cluster', width: 150 },
|
||||
// { field: 'supportGroup', headerText: 'Gewählte Support Gruppe' },
|
||||
|
||||
|
||||
{ field: 'changeNr', headerText: 'Change Nummer', width: 200 }
|
||||
];
|
||||
|
||||
|
|
@ -321,9 +323,11 @@ export class NttGanttComponent implements OnInit {
|
|||
this.showSaveButton = false;
|
||||
this.showSaveUnderButton = false;
|
||||
|
||||
this.dataService.savePreset(preset).then((res)=>{{
|
||||
this.dataService.savePreset(preset).then((res) => {
|
||||
{
|
||||
console.log(res);
|
||||
}})
|
||||
}
|
||||
})
|
||||
}
|
||||
public updatePreset() {
|
||||
this.showSaveButton = false;
|
||||
|
|
@ -596,7 +600,7 @@ export class NttGanttComponent implements OnInit {
|
|||
filter: this.filterEnabled ? this.filters : { filterElement: [{ column: "SupportGroup", filter: "equals", criteria: [this.userSupportGroup] }] },
|
||||
sort: this.sortEnabled ? this.sort : {
|
||||
'column': 'ChangeNr',
|
||||
'mode': 'asc'
|
||||
'mode': 'asc'
|
||||
},
|
||||
}
|
||||
console.log("\nrequest")
|
||||
|
|
@ -877,8 +881,7 @@ export class NttGanttComponent implements OnInit {
|
|||
*/
|
||||
|
||||
public queryTaskbarInfo(args: any) {
|
||||
if (args.taskbarType == 'Milestone' && args.data.taskData.TaskID.includes("D2"))
|
||||
{
|
||||
if (args.taskbarType == 'Milestone' && args.data.taskData.TaskID.includes("D2")) {
|
||||
if (args.data.taskData.isFixed == false) {
|
||||
args.taskbarElement.children[1].classList.add('e-gantt-milestone-border1');
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in New Issue