summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/app/fusionapp/drools/view-models/droolsList.html
blob: 91e68a15396c2f6921871bcda58ea9fe75e905d8 (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
<div ng-controller="droolsListController">
	<div>
		<h1 class="heading1" style="margin-top:20px;">Drools List</h1>
		<div style="margin-top:30px">
			<table att-table table-data="tableData" view-per-page="viewPerPage" current-page="currentPage" search-category="searchCategory" search-string="searchString" total-page="totalPage">

			    <thead  att-table-row type="header">
					<tr>
						<th att-table-header key="droolsFile">Drools File Name</th>
			            <th att-table-header key="className">Class Name</th>     
			            <th att-table-header key="selectedRules">Run Rule</th>   
       
			        </tr>
			    </thead>
			    <tbody att-table-row type="body" row-repeat="rowData in tableData">
			        <tr>
		            	<td att-table-body ng-bind="rowData['droolsFile']">{{rowData.droolsFile}}</td>
		            	<td att-table-body ng-bind="rowData['className']">{{rowData.className}}</td>

		        		<td att-table-body >
		        			<div ng-click="openDialog(rowData.droolsFile)" style="font-size:20px;"><a href="javascript:void(0)" class="icon-play"></a></div>
					    </td>
			        </tr>     
			    </tbody>	  
			</table>
		</div>
	</div>	
	<input ng-model="currentPage"></input>