Skip to content
This repository has been archived by the owner on Sep 22, 2023. It is now read-only.

Commit

Permalink
Height fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias Legind committed Oct 1, 2018
1 parent 3e80126 commit 9a8425b
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
},
groupable: false,
columnMenu: true,
height: 750,
height: window.innerHeight - 200,
excelExport: this.exportToExcel,
columns: [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@
},
groupable: false,
columnMenu: true,
height: 750,
height: window.innerHeight - 200,
dataBound: this.saveGridOptions,
columnResize: this.saveGridOptions,
columnHide: this.saveGridOptions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@
},
groupable: false,
columnMenu: true,
height: 750,
height: window.innerHeight - 200,
detailTemplate: (dataItem) => {
//These might be candidates for refactoring. They are quite expensive
return `<uib-tabset active="0">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@
},
groupable: false,
columnMenu: true,
height: 750,
height: window.innerHeight - 200,
dataBound: this.saveGridOptions,
columnResize: this.saveGridOptions,
columnHide: this.saveGridOptions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@
},
groupable: false,
columnMenu: true,
height: 750,
height: window.innerHeight - 200,
dataBound: this.saveGridOptions,
columnResize: this.saveGridOptions,
columnHide: this.saveGridOptions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@
},
groupable: false,
columnMenu: true,
height: 750,
height: window.innerHeight - 200,
dataBound: this.saveGridOptions,
columnResize: this.saveGridOptions,
columnHide: this.saveGridOptions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@
},
groupable: false,
columnMenu: true,
height: 750,
height: window.innerHeight - 200,
dataBound: this.saveGridOptions,
columnResize: this.saveGridOptions,
columnHide: this.saveGridOptions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@
},
groupable: false,
columnMenu: true,
height: 750,
height: window.innerHeight - 200,
dataBound: this.saveGridOptions,
columnResize: this.saveGridOptions,
columnHide: this.saveGridOptions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
},
groupable: false,
columnMenu: true,
height: 750,
height: window.innerHeight - 200,
excelExport: this.exportToExcel,
columns: [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
},
groupable: false,
columnMenu: true,
height: 750,
height: window.innerHeight - 200,
detailTemplate: (dataItem) => `<uib-tabset active="0">
<uib-tab index="0" heading="Organisation roller"><user-organization-unit-roles user-id="${dataItem.Id}" current-organization-id="${this.user.currentOrganizationId}"></user-organization-unit-roles></uib-tab>
<uib-tab index="1" heading="Projekt roller"><user-project-roles user-id="${dataItem.Id}" current-organization-id="${this.user.currentOrganizationId}"></user-project-roles></uib-tab>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@
mode: "row",
},
columnMenu: true,
height: 750,
height: window.innerHeight - 200,
dataBound: this.saveGridOptions,
columnResize: this.saveGridOptions,
columnHide: this.saveGridOptions,
Expand Down

0 comments on commit 9a8425b

Please sign in to comment.