Subversion Repositories SmartDukaan

Rev

Rev 30260 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
26014 amit.gupta 1
<style>
2
.btn:hover,
3
.btn:focus {
4
  	color: grey;
5
  	text-decoration: none;
6
	}
7
 
8
	.modal-dialog.modal-lg{
9
		left:10%;
10
		right:auto;
11
		width:80%;
12
	}
13
	.modal-content{
14
		background : white;
15
	}
16
 
17
	.border-highlight{
18
		border : 3px solid red;
19
	}
20
	td.highlight{
21
		background-color: yellowgreen !important;
22
	}	
23
</style>
24
 
25
<section class="wrapper">            
26
      <!--overview start-->
27
	<div class="row">
28
			<div class="col-lg-12">
29
				<h3 class="page-header"><i class="icon_document_alt"></i>GRN</h3>
30
				<ol class="breadcrumb">
31
					<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
32
					<li><i class="icon_document_alt"></i>NEW</li>						  	
33
				</ol>
34
			</div>
35
	</div>
36
	<div class="row">
37
		<div class="col-lg-3">
38
			<table id="ticket-category" class="table table-striped table-condensed">
39
				<thead>
40
					<tr>
41
						<th>Role/Category</th>
42
					</tr>
43
				</thead>
44
				<tbody>
45
				#foreach($ticketCategory in $ticketCategories)
46
					#foreach($escalationType in $escalationTypes)
47
					<tr>
48
					<td>
49
						<a class="category-level" href="javascript:void(0)" data-level="$escalationType" data-category="$ticketCategory.getId()">$ticketCategory.getName()-$escalationType</a>
50
					</td>
51
					</tr>
52
					#end 
53
				#end
54
				</tbody>
55
			</table>
56
		</div>
57
		<div class="col-lg-4">
58
			<table id="access-resource" class="table table-striped table-condensed">
59
				<thead>
60
					<tr>
61
						<th>Resource</th>
62
					</tr>
63
				</thead>
64
				<tbody>
65
				#foreach($menuItem in $menuItems)
66
					#if($menuItem.get_parent())
67
					<tr><td>
68
						<div class="checkbox">
69
							<label><input type="checkbox" data-menuid="$menuItem.getId()" value="$menuItem.getId()" >
70
									$menuItem.get_parent().getDisplayText() - $menuItem.getDisplayText()
71
							</label>
72
						</div>
73
					</td></tr>
74
					#end
75
				#end
76
				</tbody>
77
			</table>
78
		</div>
79
	</div>
80
	<script type="text/javascript">
81
		$('#access-resource').dataTable({
82
			"iDisplayLength" : 20
83
		});
84
		$('#ticket-category').dataTable({
85
			"iDisplayLength" : 20
86
		});
87
	</script>
88
</section>