Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mytime
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Narendar Vakiti
mytime
Commits
d40b50fc
Commit
d40b50fc
authored
Aug 02, 2018
by
vsunke-nisum-com
Committed by
rbonthala-nisum-com
Aug 02, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MT-119 (#103)
parent
22afad5e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
48 additions
and
1 deletion
+48
-1
MyProjectAllocations.js
src/main/webapp/WEB-INF/controllers/MyProjectAllocations.js
+5
-1
newProjectTeamDetails.html
src/main/webapp/WEB-INF/templates/newProjectTeamDetails.html
+43
-0
No files found.
src/main/webapp/WEB-INF/controllers/MyProjectAllocations.js
View file @
d40b50fc
...
...
@@ -76,7 +76,7 @@ myApp.controller("myProjectAllocationsController",function($scope, myFactory, $m
userData
.
action
=
action
;
$mdDialog
.
show
({
controller
:
ProjectDetailsController
,
templateUrl
:
'templates/
p
rojectTeamDetails.html'
,
templateUrl
:
'templates/
newP
rojectTeamDetails.html'
,
parent
:
angular
.
element
(
document
.
body
),
clickOutsideToClose
:
false
,
locals
:{
dataToPass
:
userData
,
gridOptionsData
:
$scope
.
gridOptions
.
data
,
managers
:
$scope
.
managers
},
...
...
@@ -128,7 +128,11 @@ myApp.controller("myProjectAllocationsController",function($scope, myFactory, $m
$scope
.
cancel
=
function
()
{
$mdDialog
.
hide
();
};
$scope
.
cancelDialog
=
function
()
{
$mdDialog
.
hide
();
};
}
function
showAlert
(
message
)
{
$mdDialog
.
show
(
$mdDialog
.
alert
().
parent
(
angular
.
element
(
document
.
querySelector
(
'#popupContainer'
)))
...
...
src/main/webapp/WEB-INF/templates/newProjectTeamDetails.html
0 → 100644
View file @
d40b50fc
<md-dialog
aria-label=
"Team Details"
style=
"width:950px;height:auto;"
class=
"md-dialog-custom-height"
ng-init=
"getEmployeeDetails()"
id=
"projectTeamDetails"
>
<form
ng-cloak
name=
"myForm "
>
<md-toolbar>
<div
class=
"md-toolbar-tools "
style=
"background: cadetblue; "
>
<h2>
Team Details
</h2>
<span
flex
></span>
<md-button
class=
"md-icon-button "
ng-click=
"cancelDialog() "
>
<i
class=
"fa fa-times fa-2x "
style=
"margin-top: 5px; font-size: 1.5em; float: left "
></i>
</md-button>
</div>
</md-toolbar>
<md-content
style=
"height:400px !important"
>
<md-content
class=
"md-padding "
style=
"padding: 10px;"
>
<md-dialog-content>
<div
class=
"md-dialog-content "
>
<div
class=
"form-group "
>
<div
class=
"row col-lg-12 "
style=
"margin-left: 0px; "
>
<div
class=
"row col-lg-12 col-xs-12 "
>
<div
class=
"col-xs-6 text-left "
>
<p>
<b>
Project Name:
</b>
{{projectName}}
</p>
</div>
<div
class=
"col-xs-6 text-right "
>
<p>
<b>
Manager Name:
</b><span
ng-repeat=
"manager in managerIds"
>
{{manager.employeeName}}
<span
ng-hide=
"$last"
>
,
</span></span>
</p>
</div>
</div>
<div
id=
"gridTest "
ui-grid=
"gridOptions "
ui-grid-pagination
style=
"width:99%;height:230px;margin-left:10px; "
>
<div
class=
"watermark "
ng-show=
"!gridOptions.data.length "
>
No data available
</div>
</div>
</div>
</div>
</div>
</md-dialog-content>
</md-content>
</md-content>
</form>
</md-dialog>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment