aboutsummaryrefslogtreecommitdiffstats
path: root/vid/src/main/webapp/app/vid/scripts/view-models/aaiSubDetails.htm
blob: 90932875a714dec711aeec738148674ca77b8a6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!--
  ============LICENSE_START=======================================================
  VID
  ================================================================================
  Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
  ================================================================================
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at
  
       http://www.apache.org/licenses/LICENSE-2.0
  
  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
  ============LICENSE_END=========================================================
  -->

	<div ng-controller="aaiSubscriberController" ng-cloak>
	
		<div>
			<div class="statusLine" ng-class="{true:'aaiVisible', false:'aaiHidden'}[isSpinnerVisible]">
				<img src="app/vid/images/spinner.gif">
					</img>
				<label>Status:</label><span class="status">{{status}}</span>
			</div>
	
			 <h1 class="heading1"><center>Subscriber Details for {{selectedSubscriber}} ({{selectedSubscriberName}})</center></h1>
	     		<br>
		<div class="fn-ebz-container">
		         Filter:
		          <input class="fn-ebz-text" type="text" ng-model="searchString" size="20" style="width: 250px;">
	    </div>
			<div ng-init="getSubDetails();">
				
				<div style="margin-top: 30px">
					<table att-table width="100%" table-data="displayData" view-per-page="viewPerPage" current-page="currentPage" search-category="searchCategory" search-string="searchString" total-page="totalPage" type="header">
	
						<thead att-table-row>
							<tr>
								<th att-table-header sortable="true" key="viewSubDetails">View/Edit</th>
								<th att-table-header sortable="true" key="globalCustomerId">Global Customer ID</th>
								<th att-table-header sortable="true" key="subscriberName">Subscriber Name</th>
								<th att-table-header sortable="true" key="serviceType">Service Type</th>
								<th att-table-header default-sort="A" sortable="true" key="serviceInstanceName">Service Instance Name</th>
								<th att-table-header sortable="true" key="serviceInstanceId">Service Instance ID</th>
							</tr>
						</thead>
						<tbody att-table-row type="body" row-repeat="disData in displayData">
							<tr>
								 <td att-table-body>
									<div>
										<a alt="View/Edit" ng-click="getAsdcModel(disData);"> View/Edit </a>
									</div>
								</td> 
							<!--	<td att-table-body ><button type=button ng-click="getAsdcModel(disData);" att-button btn-type="primary" size="small">View/Edit</button></td> --->
								<td att-table-body ng-bind="disData['globalCustomerId']"></td>
								<td att-table-body ng-bind="disData['subscriberName']"></td>
								<td att-table-body ng-bind="disData['serviceType']"></td>
								<td att-table-body ng-bind="disData['serviceInstanceName']"></td>
								<td att-table-body ng-bind="disData['serviceInstanceId']"></td>
							</tr>
						</tbody>
					</table>
					<table width='100%'>
					<tr>
					<td width='33%' valign='middle'>
						<span style="cursor: pointer" ng-if="currentPage>1"><button att-button size="small" ng-click="prevPage();">&lt; prev page</button></span>
					</td>
					<td width='33%' valign='middle'>
						Jump to page:
		          		<input class="fn-ebz-text" type="text" ng-model="currentPage" size="5" style="width: 47px;">
		    			Results per page: <span style="cursor: pointer" ng-click="viewPerPage = 10" ng-style="viewPerPage === 10 && {'textDecoration':'underline','text-color':'black'}">10</span> 
	    				| <span style="cursor: pointer" ng-click="viewPerPage = 25" ng-style="viewPerPage === 25 && {'textDecoration':'underline','text-color':'black'}">25</span> 
	    				| <span style="cursor: pointer" ng-click="viewPerPage = 50" ng-style="viewPerPage === 50 && {'textDecoration':'underline','text-color':'black'}">50</span> 
	    			</td>
	    			<td width='34%' align='right' valign='middle'>
	    			 	<span style="cursor: pointer" ng-if="currentPage<totalPage"><button att-button ng-click="nextPage();">next page &gt;</button></span>
					</td>
					</tr>
					</table>
					 
	    			
				</div>
	
			</div>
	
	
		</div>
	
	</div>