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
1e85ec4f
Commit
1e85ec4f
authored
Jul 23, 2018
by
dgoud-nisum-com
Committed by
rbonthala-nisum-com
Jul 23, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mt 77 edit account (#45)
* edit and MT-69 * edit and MT-69 * MT-77 Edit Account Completed
parent
35ed81fb
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
80 additions
and
69 deletions
+80
-69
LoginController.js
src/main/webapp/WEB-INF/controllers/LoginController.js
+1
-1
assignAccountsController.js
...in/webapp/WEB-INF/controllers/assignAccountsController.js
+64
-55
default-styles.css
src/main/webapp/WEB-INF/css/default-styles.css
+0
-4
newAccount.html
src/main/webapp/WEB-INF/templates/newAccount.html
+7
-6
projectTeamDetails.html
src/main/webapp/WEB-INF/templates/projectTeamDetails.html
+8
-3
No files found.
src/main/webapp/WEB-INF/controllers/LoginController.js
View file @
1e85ec4f
...
@@ -290,7 +290,7 @@ myApp.controller("loginController",function($scope, myFactory, $compile, $window
...
@@ -290,7 +290,7 @@ myApp.controller("loginController",function($scope, myFactory, $compile, $window
menuItems
.
push
({
"menu"
:
"My Org"
,
"icon"
:
"fa fa-address-card-o fa-2x"
,
"path"
:
"templates/myOrg.html"
});
menuItems
.
push
({
"menu"
:
"My Org"
,
"icon"
:
"fa fa-address-card-o fa-2x"
,
"path"
:
"templates/myOrg.html"
});
menuItems
.
push
({
"menu"
:
"My Profile"
,
"icon"
:
"fa fa-address-book-o fa-2x"
,
"path"
:
"templates/profile.html"
});
menuItems
.
push
({
"menu"
:
"My Profile"
,
"icon"
:
"fa fa-address-book-o fa-2x"
,
"path"
:
"templates/profile.html"
});
}
else
if
(
role
==
"Delivery Manager"
||
role
==
"Director"
){
}
else
if
(
role
==
"Delivery Manager"
||
role
==
"Director"
){
menuItems
.
push
({
"menu"
:
"Manage Accounts"
,
"icon"
:
"fa fa
-user-plus
fa-2x"
,
"path"
:
"templates/accounts.html"
});
menuItems
.
push
({
"menu"
:
"Manage Accounts"
,
"icon"
:
"fa fa
fa-user
fa-2x"
,
"path"
:
"templates/accounts.html"
});
menuItems
.
push
({
"menu"
:
"Manage Employees"
,
"icon"
:
"fa fa-user-plus fa-2x"
,
"path"
:
"templates/roles.html"
});
menuItems
.
push
({
"menu"
:
"Manage Employees"
,
"icon"
:
"fa fa-user-plus fa-2x"
,
"path"
:
"templates/roles.html"
});
menuItems
.
push
({
"menu"
:
"Manage Team"
,
"icon"
:
"fa fa-sitemap fa-2x"
,
"path"
:
"templates/projectDetails.html"
});
menuItems
.
push
({
"menu"
:
"Manage Team"
,
"icon"
:
"fa fa-sitemap fa-2x"
,
"path"
:
"templates/projectDetails.html"
});
menuItems
.
push
({
"menu"
:
"Manage Domains"
,
"icon"
:
"fa fa-handshake-o"
,
"path"
:
"templates/domains.html"
});
menuItems
.
push
({
"menu"
:
"Manage Domains"
,
"icon"
:
"fa fa-handshake-o"
,
"path"
:
"templates/domains.html"
});
...
...
src/main/webapp/WEB-INF/controllers/assignAccountsController.js
View file @
1e85ec4f
...
@@ -6,9 +6,10 @@ myApp.controller("assignAccountsController",function($scope, myFactory, $mdDialo
...
@@ -6,9 +6,10 @@ myApp.controller("assignAccountsController",function($scope, myFactory, $mdDialo
"industryType"
:
""
,
"industryType"
:
""
,
"status"
:
""
,
"status"
:
""
,
"deliveryManagers"
:[],
"deliveryManagers"
:[],
"action"
:
""
"action"
:
""
,
"clientAddress"
:
""
};
};
var
getCellTemplate
=
'<p class="col-lg-12"><i class="fa fa-pencil-square-o fa-2x" aria-hidden="true" style="font-size:1.5em;margin-top:3px;cursor:pointer;" data-placement="center" title="
View
" onmouseenter="$(this).tooltip(
\'
show
\'
)" ng-click="grid.appScope.getRowData(row,
\'
Update
\'
)"></i>'
+
var
getCellTemplate
=
'<p class="col-lg-12"><i class="fa fa-pencil-square-o fa-2x" aria-hidden="true" style="font-size:1.5em;margin-top:3px;cursor:pointer;" data-placement="center" title="
Edit
" onmouseenter="$(this).tooltip(
\'
show
\'
)" ng-click="grid.appScope.getRowData(row,
\'
Update
\'
)"></i>'
+
' <i class="fa fa-minus-circle fa-2x" aria-hidden="true" style="font-size:1.5em;margin-top:3px;cursor:pointer;" data-placement="left" title="Delete" onmouseenter="$(this).tooltip(
\'
show
\'
)" ng-click="grid.appScope.getRowData(row,
\'
Delete
\'
)"></i></p>'
;
' <i class="fa fa-minus-circle fa-2x" aria-hidden="true" style="font-size:1.5em;margin-top:3px;cursor:pointer;" data-placement="left" title="Delete" onmouseenter="$(this).tooltip(
\'
show
\'
)" ng-click="grid.appScope.getRowData(row,
\'
Delete
\'
)"></i></p>'
;
$scope
.
gridOptions
=
{
$scope
.
gridOptions
=
{
paginationPageSizes
:
[
10
,
20
,
30
,
40
,
50
,
100
],
paginationPageSizes
:
[
10
,
20
,
30
,
40
,
50
,
100
],
...
@@ -17,7 +18,7 @@ myApp.controller("assignAccountsController",function($scope, myFactory, $mdDialo
...
@@ -17,7 +18,7 @@ myApp.controller("assignAccountsController",function($scope, myFactory, $mdDialo
pageSize
:
10
,
pageSize
:
10
,
enableFiltering
:
true
,
enableFiltering
:
true
,
columnDefs
:
[
columnDefs
:
[
{
field
:
'accountId'
,
displayName
:
'Account ID'
,
enableColumnMenu
:
true
,
enableSorting
:
true
,
enableFiltering
:
tru
e
,
width
:
120
,
cellClass
:
'grid-align'
},
{
field
:
'accountId'
,
displayName
:
'Account ID'
,
enableColumnMenu
:
true
,
enableSorting
:
true
,
enableFiltering
:
fals
e
,
width
:
120
,
cellClass
:
'grid-align'
},
{
field
:
'accountName'
,
displayName
:
'Account Name'
,
enableColumnMenu
:
false
,
enableSorting
:
false
,
enableFiltering
:
true
,
cellClass
:
'grid-align'
},
{
field
:
'accountName'
,
displayName
:
'Account Name'
,
enableColumnMenu
:
false
,
enableSorting
:
false
,
enableFiltering
:
true
,
cellClass
:
'grid-align'
},
{
field
:
'industryType'
,
displayName
:
'Industry Type'
,
enableColumnMenu
:
false
,
enableSorting
:
true
,
enableFiltering
:
true
,
cellClass
:
'grid-align'
},
{
field
:
'industryType'
,
displayName
:
'Industry Type'
,
enableColumnMenu
:
false
,
enableSorting
:
true
,
enableFiltering
:
true
,
cellClass
:
'grid-align'
},
{
field
:
'status'
,
displayName
:
'Status'
,
enableColumnMenu
:
false
,
enableSorting
:
true
,
enableFiltering
:
true
,
cellClass
:
'grid-align'
},
{
field
:
'status'
,
displayName
:
'Status'
,
enableColumnMenu
:
false
,
enableSorting
:
true
,
enableFiltering
:
true
,
cellClass
:
'grid-align'
},
...
@@ -27,13 +28,15 @@ myApp.controller("assignAccountsController",function($scope, myFactory, $mdDialo
...
@@ -27,13 +28,15 @@ myApp.controller("assignAccountsController",function($scope, myFactory, $mdDialo
};
};
$scope
.
gridOptions
.
data
=
$scope
.
records
;
$scope
.
gridOptions
.
data
=
$scope
.
records
;
$scope
.
getRowData
=
function
(
row
,
action
){
$scope
.
getRowData
=
function
(
row
,
action
){
$scope
.
parentData
.
id
=
row
.
entity
.
id
;
$scope
.
parentData
.
accountId
=
row
.
entity
.
accountId
;
$scope
.
parentData
.
accountId
=
row
.
entity
.
accountId
;
$scope
.
parentData
.
accountName
=
row
.
entity
.
accountName
;
$scope
.
parentData
.
accountName
=
row
.
entity
.
accountName
;
$scope
.
parentData
.
industryType
=
row
.
entity
.
industryType
;
$scope
.
parentData
.
industryType
=
row
.
entity
.
industryType
;
$scope
.
parentData
.
deliveryManagers
=
row
.
entity
.
deliveryManagers
;
$scope
.
parentData
.
deliveryManagers
=
row
.
entity
.
deliveryManagers
;
$scope
.
parentData
.
status
=
row
.
entity
.
status
;
$scope
.
parentData
.
status
=
row
.
entity
.
status
;
$scope
.
parentData
.
clientAddress
=
row
.
entity
.
clientAddress
;
if
(
action
==
"Update"
)
if
(
action
==
"Update"
)
$scope
.
update
Account
(
action
,
$scope
.
parentData
);
$scope
.
add
Account
(
action
,
$scope
.
parentData
);
else
if
(
action
==
"Delete"
)
else
if
(
action
==
"Delete"
)
$scope
.
deleteAccount
(
row
,
action
);
$scope
.
deleteAccount
(
row
,
action
);
}
}
...
@@ -45,8 +48,7 @@ myApp.controller("assignAccountsController",function($scope, myFactory, $mdDialo
...
@@ -45,8 +48,7 @@ myApp.controller("assignAccountsController",function($scope, myFactory, $mdDialo
method
:
"GET"
,
method
:
"GET"
,
url
:
appConfig
.
appUri
+
"account/accounts"
url
:
appConfig
.
appUri
+
"account/accounts"
}).
then
(
function
mySuccess
(
response
)
{
}).
then
(
function
mySuccess
(
response
)
{
console
.
log
(
response
.
data
);
$scope
.
gridOptions
.
data
=
response
.
data
;
$scope
.
gridOptions
.
data
=
response
.
data
;
},
function
myError
(
response
)
{
},
function
myError
(
response
)
{
showAlert
(
"Something went wrong while fetching data!!!"
);
showAlert
(
"Something went wrong while fetching data!!!"
);
$scope
.
gridOptions
.
data
=
[];
$scope
.
gridOptions
.
data
=
[];
...
@@ -69,23 +71,6 @@ myApp.controller("assignAccountsController",function($scope, myFactory, $mdDialo
...
@@ -69,23 +71,6 @@ myApp.controller("assignAccountsController",function($scope, myFactory, $mdDialo
else
showAlert
(
'Account assigning/updation failed!!!'
);
else
showAlert
(
'Account assigning/updation failed!!!'
);
});
});
}
}
// $scope.updateAccount = function(action, userData){
// $('#home').addClass('md-scroll-mask');
// userData.action = action;
// $mdDialog.show ({
// clickOutsideToClose: true,
// scope: $scope,
// preserveScope: true,
// templateUrl: 'templates/newAccount.html',
// controller: addController,
// locals:{dataToPass: userData,gridOptionsData: $scope.gridOptions.data, employees: $scope.employees},
// }).then(function(result) {
// if(result == "Add") showAlert('Account assigned successfully');
// else if(result == "Update") showAlert('Account updated successfully');
// else if(result == "Cancelled") console.log(result);
// else showAlert('Account assigning/updation failed!!!');
// });
// }
function
showAlert
(
message
)
{
function
showAlert
(
message
)
{
$mdDialog
.
show
(
$mdDialog
.
alert
().
parent
(
$mdDialog
.
show
(
$mdDialog
.
alert
().
parent
(
angular
.
element
(
document
.
querySelector
(
'#popupContainer'
)))
angular
.
element
(
document
.
querySelector
(
'#popupContainer'
)))
...
@@ -143,6 +128,21 @@ myApp.controller("assignAccountsController",function($scope, myFactory, $mdDialo
...
@@ -143,6 +128,21 @@ myApp.controller("assignAccountsController",function($scope, myFactory, $mdDialo
$mdSelect
.
hide
();
$mdSelect
.
hide
();
}
}
})
})
if
(
dataToPass
.
action
==
"Add"
){
$scope
.
accountId
=
""
;
$scope
.
accountName
=
""
;
$scope
.
industryType
=
""
;
$scope
.
clientAddress
=
""
;
$scope
.
deliveryManagers
=
[];
$scope
.
alertMsg
=
""
;
}
else
if
(
dataToPass
.
action
==
"Update"
){
$scope
.
accountId
=
dataToPass
.
accountId
;
$scope
.
accountName
=
dataToPass
.
accountName
;
$scope
.
industryType
=
dataToPass
.
industryType
;
$scope
.
clientAddress
=
dataToPass
.
clientAddress
;
$scope
.
managersSelectedList
=
dataToPass
.
deliveryManagers
;
}
$scope
.
getDeliveryManagers
=
function
(){
$scope
.
getDeliveryManagers
=
function
(){
$http
({
$http
({
method
:
"GET"
,
method
:
"GET"
,
...
@@ -154,24 +154,9 @@ myApp.controller("assignAccountsController",function($scope, myFactory, $mdDialo
...
@@ -154,24 +154,9 @@ myApp.controller("assignAccountsController",function($scope, myFactory, $mdDialo
$scope
.
gridOptions
.
data
=
[];
$scope
.
gridOptions
.
data
=
[];
});
});
};
};
$scope
.
duplicateAccNameValidation
=
function
(){
$http
({
$scope
.
closeSelectBox
=
function
()
{
method
:
"GET"
,
$mdSelect
.
hide
();
url
:
appConfig
.
appUri
+
"/account/accounts/"
+
$scope
.
accountName
}).
then
(
function
mySuccess
(
response
)
{
if
(
response
.
data
==
'Account already exist'
){
$scope
.
alertMsg
=
response
.
data
;
$scope
.
addButtonvisible
=
true
;
$
(
'#addButton'
).
addClass
(
'addButtonDisable'
);
}
else
{
//$scope.alertMsg=response.data;
$scope
.
addButtonvisible
=
false
;
$
(
'#addButton'
).
removeClass
(
'addButtonDisable'
);
}
},
function
myError
(
response
)
{
showAlert
(
"Something went wrong while fetching data!!!"
);
});
}
}
$scope
.
cancel
=
function
(){
$scope
.
cancel
=
function
(){
$mdDialog
.
hide
(
"Cancelled"
);
$mdDialog
.
hide
(
"Cancelled"
);
...
@@ -210,7 +195,7 @@ myApp.controller("assignAccountsController",function($scope, myFactory, $mdDialo
...
@@ -210,7 +195,7 @@ myApp.controller("assignAccountsController",function($scope, myFactory, $mdDialo
ev
.
stopPropagation
();
ev
.
stopPropagation
();
});
});
$scope
.
validateFields
=
function
(){
$scope
.
validateFields
=
function
(
action
){
var
managersSelectedList
=
$scope
.
managersSelectedList
;
var
managersSelectedList
=
$scope
.
managersSelectedList
;
var
accountName
=
$scope
.
accountName
;
var
accountName
=
$scope
.
accountName
;
var
industryType
=
$scope
.
industryType
;
var
industryType
=
$scope
.
industryType
;
...
@@ -222,6 +207,7 @@ myApp.controller("assignAccountsController",function($scope, myFactory, $mdDialo
...
@@ -222,6 +207,7 @@ myApp.controller("assignAccountsController",function($scope, myFactory, $mdDialo
}
}
return
employeeIdsArray
;
return
employeeIdsArray
;
}
}
if
(
action
==
"Add"
){
if
(
managersSelectedList
==
undefined
){
if
(
managersSelectedList
==
undefined
){
$scope
.
alertMsg
=
"Please select a accountManager"
;
$scope
.
alertMsg
=
"Please select a accountManager"
;
document
.
getElementById
(
'selectManager'
).
focus
();
document
.
getElementById
(
'selectManager'
).
focus
();
...
@@ -238,17 +224,37 @@ myApp.controller("assignAccountsController",function($scope, myFactory, $mdDialo
...
@@ -238,17 +224,37 @@ myApp.controller("assignAccountsController",function($scope, myFactory, $mdDialo
else
{
else
{
$scope
.
alertMsg
=
""
;
$scope
.
alertMsg
=
""
;
var
record
=
{
"accountName"
:
$scope
.
accountName
,
"industryType"
:
$scope
.
industryType
,
"clientAddress"
:
$scope
.
clientAddress
,
"deliveryManagers"
:
$scope
.
accountManagers
()};
var
record
=
{
"accountName"
:
$scope
.
accountName
,
"industryType"
:
$scope
.
industryType
,
"clientAddress"
:
$scope
.
clientAddress
,
"deliveryManagers"
:
$scope
.
accountManagers
()};
console
.
log
(
record
);
add
ingAccount
(
record
,
$scope
.
templateTitle
);
add
OrUpdateAccount
(
record
,
$scope
.
templateTitle
,
"N"
);
$timeout
(
function
(){
updateGrid
(
$scope
.
templateTitle
,
record
)},
5
00
);
$timeout
(
function
(){
updateGrid
(
$scope
.
templateTitle
,
record
)},
2
00
);
}
}
}
else
if
(
action
==
"Update"
){
if
(
managersSelectedList
==
undefined
){
$scope
.
alertMsg
=
"Please select a accountManager"
;
document
.
getElementById
(
'selectManager'
).
focus
();
}
else
if
(
accountName
==
undefined
){
$scope
.
alertMsg
=
"Please enter the account Name"
;
document
.
getElementById
(
'accountName'
).
focus
();
}
else
if
(
industryType
==
undefined
){
$scope
.
alertMsg
=
"Please enter the industry type"
;
document
.
getElementById
(
'industryType'
).
focus
();
}
else
if
(
clientAddress
==
undefined
){
$scope
.
alertMsg
=
"Please enter the client address"
;
document
.
getElementById
(
'clientAddress'
).
focus
();
}
else
{
$scope
.
alertMsg
=
""
;
var
record
=
{
"accountId"
:
$scope
.
accountId
,
"accountName"
:
$scope
.
accountName
,
"industryType"
:
$scope
.
industryType
,
"clientAddress"
:
$scope
.
clientAddress
,
"deliveryManagers"
:
$scope
.
accountManagers
()};
record
.
id
=
$scope
.
parentData
.
id
;
addOrUpdateAccount
(
record
,
$scope
.
templateTitle
,
"U"
);
$timeout
(
function
(){
updateGrid
(
$scope
.
templateTitle
,
record
)},
200
);
}
}
};
};
add
ingAccount
=
function
(
record
,
action
){
add
OrUpdateAccount
=
function
(
record
,
action
,
flag
){
var
urlRequest
=
""
;
var
urlRequest
=
""
;
if
(
action
==
"Add"
){
if
(
action
==
"Add"
||
action
==
"Update"
){
urlRequest
=
appConfig
.
appUri
+
"/account/accounts"
;
urlRequest
=
appConfig
.
appUri
+
"account/accounts?action="
+
flag
;
//}else if(action == "Update"){
//urlRequest = appConfig.appUri+ "project/updateProject";
}
}
var
req
=
{
var
req
=
{
method
:
'POST'
,
method
:
'POST'
,
...
@@ -260,6 +266,11 @@ myApp.controller("assignAccountsController",function($scope, myFactory, $mdDialo
...
@@ -260,6 +266,11 @@ myApp.controller("assignAccountsController",function($scope, myFactory, $mdDialo
}
}
$http
(
req
).
then
(
function
mySuccess
(
response
)
{
$http
(
req
).
then
(
function
mySuccess
(
response
)
{
$scope
.
result
=
"Success"
;
$scope
.
result
=
"Success"
;
if
(
response
.
data
==
'Account already exist'
){
$scope
.
alertMsg
=
response
.
data
;
}
else
{
$scope
.
alertMsg
=
""
;
}
},
function
myError
(
response
){
},
function
myError
(
response
){
$scope
.
result
=
"Error"
;
$scope
.
result
=
"Error"
;
});
});
...
@@ -269,12 +280,10 @@ myApp.controller("assignAccountsController",function($scope, myFactory, $mdDialo
...
@@ -269,12 +280,10 @@ myApp.controller("assignAccountsController",function($scope, myFactory, $mdDialo
if
(
$scope
.
result
==
"Success"
){
if
(
$scope
.
result
==
"Success"
){
if
(
action
==
"Add"
||
action
==
"Delete"
){
if
(
action
==
"Add"
||
action
==
"Delete"
){
$scope
.
refreshPage
();
$scope
.
refreshPage
();
}
else
if
(
action
==
"Update"
){
$scope
.
refreshPage
();
}
}
//else if(action == "Update"){
// var existingRecord = getRowEntity($scope.projectId);
// var index = gridOptionsData.indexOf(existingRecord);
// gridOptionsData[index] = record;
// }
$mdDialog
.
hide
(
action
);
$mdDialog
.
hide
(
action
);
}
else
{
}
else
{
$mdDialog
.
hide
(
"Error"
);
$mdDialog
.
hide
(
"Error"
);
...
...
src/main/webapp/WEB-INF/css/default-styles.css
View file @
1e85ec4f
...
@@ -205,10 +205,6 @@ md-dialog{
...
@@ -205,10 +205,6 @@ md-dialog{
padding-left
:
0px
!important
;
padding-left
:
0px
!important
;
}
}
/* Styles added for accounts module*/
.addButtonDisable
{
background-color
:
darkgrey
!important
;
}
.ui-grid-canvas
.ui-grid-cell-contents
{
.ui-grid-canvas
.ui-grid-cell-contents
{
white-space
:
normal
;
white-space
:
normal
;
}
}
src/main/webapp/WEB-INF/templates/newAccount.html
View file @
1e85ec4f
...
@@ -61,16 +61,17 @@
...
@@ -61,16 +61,17 @@
<p>
{{item.employeeName}}
<span
ng-click=
"removeSelectedLead(item)"
class=
"glyphicon glyphicon-remove"
></span>
</p>
<p>
{{item.employeeName}}
<span
ng-click=
"removeSelectedLead(item)"
class=
"glyphicon glyphicon-remove"
></span>
</p>
</div>
</div>
</div>
</div>
<md-input-container
style=
"display: block; float: left; width: 100%;"
>
<div
style=
"display: block; float: left; width: 100%;"
>
<md-select
class=
"lead-search"
ng-model=
"managersSelectedList"
id=
"selectManager"
data-md-container-class=
"selectdemoSelectHeader"
multiple=
""
md-selected-text=
"getSelectedLead()"
>
<md-select
ng-model=
"managersSelectedList"
data-md-container-class=
"selectHeader"
id=
"selectManager"
multiple=
""
md-selected-text=
"getSelectedLead()"
>
<md-select-header
class=
"demo-select-header"
>
<md-select-header
class=
"selectHeaderChild header-spacing"
layout=
"column"
>
<input
ng-model=
"searchTerm"
type=
"search"
id=
"search"
style =
"width:100%"
placeholder=
"Search for a manager"
ng-keydown=
"updateSearch($event)"
ng-model-options=
"{debounce: {'default': 500, 'blur': 0}}"
class=
"demo-header-searchbox md-text"
/>
<input
ng-model=
"searchTerm"
type=
"search"
id=
"search"
ng-keydown=
"updateSearch($event)"
ng-model-options=
"{debounce: {'default': 500, 'blur': 0}}"
placeholder=
"Please Search for a manager"
class=
"searchBoxHeader demo-header-searchbox md-text search-spacingleft"
/>
<span
class=
"glyphicon glyphicon-remove close-mdselect"
ng-click=
"closeSelectBox()"
></span>
</md-select-header>
</md-select-header>
<md-optgroup
label=
"managers"
>
<md-optgroup
label=
"managers"
class=
"optionScroll"
>
<md-option
ng-value=
"manager"
ng-repeat=
"manager in managerDetails | filter:searchFilter"
>
{{manager.employeeName}}
</md-option>
<md-option
ng-value=
"manager"
ng-repeat=
"manager in managerDetails | filter:searchFilter"
>
{{manager.employeeName}}
</md-option>
</md-optgroup>
</md-optgroup>
</md-select>
</md-select>
</
md-input-container
>
</
div
>
</td>
</td>
</tr>
</tr>
</table>
</table>
...
...
src/main/webapp/WEB-INF/templates/projectTeamDetails.html
View file @
1e85ec4f
...
@@ -70,9 +70,14 @@
...
@@ -70,9 +70,14 @@
</p>
</p>
</div>
</div>
</div>
</div>
<md-select
ng-model=
"employeeModel "
md-selected-text=
"getEmployeeSelected() "
id=
"selectEmp"
name=
"employeeModel"
>
<md-select
ng-model=
"employeeModel "
data-md-container-class=
"selectHeader"
md-selected-text=
"getEmployeeSelected() "
id=
"selectEmp"
name=
"employeeModel"
>
<md-optgroup
label=
"Employee "
>
<md-select-header
class=
"selectHeaderChild header-spacing"
layout=
"column"
>
<md-option
ng-value=
"employee "
ng-repeat=
"employee in employeeList "
>
{{employee.employeeName}}
</md-option>
<input
ng-model=
"searchTerm"
type=
"search"
id=
"search"
ng-keydown=
"updateSearch($event)"
ng-model-options=
"{debounce: {'default': 500, 'blur': 0}}"
placeholder=
"Please search for a employee"
class=
"searchBoxHeader demo-header-searchbox md-text search-spacingleft"
/>
<span
class=
"glyphicon glyphicon-remove close-mdselect"
ng-click=
"closeSelectBox()"
></span>
</md-select-header>
<md-optgroup
label=
"Employee "
class=
"optionScroll"
>
<md-option
ng-value=
"employee "
ng-repeat=
"employee in employeeList | filter:searchFilter"
>
{{employee.employeeName}}
</md-option>
</md-optgroup>
</md-optgroup>
</md-select>
</md-select>
<output>
Employee Name : {{employeeModel.employeeName}}
</output>
<output>
Employee Name : {{employeeModel.employeeName}}
</output>
...
...
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