| 24417 |
govind |
1 |
<script type="text/javascript">
|
|
|
2 |
|
|
|
3 |
$(document).ready(function() {
|
|
|
4 |
$('#authUser').multiselect({
|
|
|
5 |
includeSelectAllOption: true,
|
|
|
6 |
multiple:true,
|
|
|
7 |
maxHeight: 200,
|
|
|
8 |
buttonWidth: '180px',
|
|
|
9 |
numberDisplayed: 1,
|
|
|
10 |
nonSelectedText: 'AuthUsers',
|
|
|
11 |
nSelectedText: ' - AuthUser Selected',
|
|
|
12 |
allSelectedText: 'All AuthUser Selected',
|
|
|
13 |
enableFiltering: true,
|
|
|
14 |
enableCaseInsensitiveFiltering : true
|
|
|
15 |
});
|
|
|
16 |
$('#regionPosition').multiselect({
|
|
|
17 |
includeSelectAllOption: true,
|
|
|
18 |
multiple:true,
|
|
|
19 |
maxHeight: 200,
|
|
|
20 |
buttonWidth: '180px',
|
|
|
21 |
numberDisplayed: 1,
|
|
|
22 |
nonSelectedText: 'Region',
|
|
|
23 |
nSelectedText: ' - Region Selected',
|
|
|
24 |
allSelectedText: 'All Region Selected',
|
|
|
25 |
enableFiltering: true,
|
|
|
26 |
enableCaseInsensitiveFiltering : true
|
|
|
27 |
});
|
|
|
28 |
$('#escalationType').multiselect({
|
|
|
29 |
includeSelectAllOption: true,
|
|
|
30 |
multiple:true,
|
|
|
31 |
maxHeight: 200,
|
|
|
32 |
buttonWidth: '180px',
|
|
|
33 |
numberDisplayed: 1,
|
|
|
34 |
nonSelectedText: 'EscalationType',
|
|
|
35 |
nSelectedText: ' - EscalationType Selected',
|
|
|
36 |
allSelectedText: 'All EscalationType Selected',
|
|
|
37 |
enableFiltering: true,
|
|
|
38 |
enableCaseInsensitiveFiltering : true
|
|
|
39 |
});
|
|
|
40 |
$('#ticketCategoryPosition').multiselect({
|
|
|
41 |
includeSelectAllOption: true,
|
|
|
42 |
multiple:true,
|
|
|
43 |
maxHeight: 200,
|
|
|
44 |
buttonWidth: '180px',
|
|
|
45 |
numberDisplayed: 1,
|
|
|
46 |
nonSelectedText: 'Category',
|
|
|
47 |
nSelectedText: ' - Category Selected',
|
|
|
48 |
allSelectedText: 'All Category Selected',
|
|
|
49 |
enableFiltering: true,
|
|
|
50 |
enableCaseInsensitiveFiltering : true
|
|
|
51 |
});
|
|
|
52 |
});
|
|
|
53 |
|
|
|
54 |
|
|
|
55 |
</script>
|
|
|
56 |
<section class="wrapper">
|
|
|
57 |
<div class="row">
|
|
|
58 |
<div class="col-lg-12">
|
|
|
59 |
<h3 class="page-header"><i class="icon_document_alt"></i>TICKET</h3>
|
|
|
60 |
<ol class="breadcrumb">
|
|
|
61 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
|
|
|
62 |
<li><i class="icon_document_alt"></i>Create Position</li>
|
|
|
63 |
</ol>
|
|
|
64 |
</div>
|
|
|
65 |
</div>
|
|
|
66 |
<form id="create-ticket-category-form">
|
|
|
67 |
<div class = "row">
|
|
|
68 |
<div class="col-lg-2 form-group">
|
|
|
69 |
<select class="form-control input-sm" id = "authUser" name="authUser" placeholder="AuthUser">
|
|
|
70 |
<option value="" disabled selected>AuthUser</option>
|
|
|
71 |
#foreach($authUser in $authUsers)
|
|
|
72 |
<option value="$authUser.getId()">$authUser.getFirstName()</option>
|
|
|
73 |
#end
|
|
|
74 |
</select>
|
|
|
75 |
</div>
|
|
|
76 |
<div class="col-lg-2 form-group">
|
|
|
77 |
<select class="form-control input-sm" id = "ticketCategoryPosition" name="ticketCategoryPosition" placeholder="Category">
|
|
|
78 |
<option value="" disabled selected>Category</option>
|
|
|
79 |
#foreach($ticketCategory in $ticketCategories)
|
|
|
80 |
<option value="$ticketCategory.getId()">$ticketCategory.getName()</option>
|
|
|
81 |
#end
|
|
|
82 |
</select>
|
|
|
83 |
</div>
|
|
|
84 |
<div class="col-lg-2 form-group">
|
|
|
85 |
<select class="form-control input-sm" id = "escalationType" name="escalationType" placeholder="escalationType">
|
|
|
86 |
<option value="" disabled selected>EscalationType</option>
|
|
|
87 |
#foreach($escalationType in $escalationTypes)
|
|
|
88 |
<option value="$escalationType">$escalationType</option>
|
|
|
89 |
#end
|
|
|
90 |
</select>
|
|
|
91 |
</div>
|
|
|
92 |
<div class="col-lg-2 form-group">
|
|
|
93 |
<select class="form-control input-sm" id = "regionPosition" name="regionPosition" placeholder="region">
|
|
|
94 |
<option value="" disabled selected>Region</option>
|
|
|
95 |
#foreach($region in $regions)
|
|
|
96 |
<option value="$region.getId()">$region.getName()</option>
|
|
|
97 |
#end
|
|
|
98 |
</select>
|
|
|
99 |
</div>
|
|
|
100 |
<div class="col-lg-2">
|
|
|
101 |
<input class="btn btn-primary create-position-button" type="button" value="Create Position">
|
|
|
102 |
</div>
|
|
|
103 |
</div>
|
|
|
104 |
</form>
|
|
|
105 |
</section>
|