| 31860 |
tejbeer |
1 |
<script>
|
|
|
2 |
$(document).ready(function() {
|
|
|
3 |
$('#fofo-users').multiselect({
|
|
|
4 |
includeSelectAllOption: true,
|
|
|
5 |
maxHeight: 200,
|
|
|
6 |
multiple:true,
|
|
|
7 |
buttonWidth: '180px',
|
|
|
8 |
numberDisplayed: 1,
|
|
|
9 |
nonSelectedText: 'Users',
|
|
|
10 |
nSelectedText: ' - Users Selected',
|
|
|
11 |
allSelectedText: 'All Users Selected',
|
|
|
12 |
enableFiltering: true,
|
|
|
13 |
enableCaseInsensitiveFiltering : true
|
|
|
14 |
});
|
|
|
15 |
|
|
|
16 |
|
|
|
17 |
});
|
|
|
18 |
|
|
|
19 |
|
|
|
20 |
|
|
|
21 |
|
|
|
22 |
|
|
|
23 |
</script>
|
|
|
24 |
|
|
|
25 |
|
|
|
26 |
|
|
|
27 |
<section class="wrapper">
|
|
|
28 |
<div class="row">
|
|
|
29 |
<div class="col-lg-12">
|
|
|
30 |
<h3 class="page-header"><i class="icon_document_alt"></i>PARTNER PERFORMANCE</h3>
|
|
|
31 |
<ol class="breadcrumb">
|
|
|
32 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
|
|
|
33 |
<li><i class="icon_document_alt"></i>Partner Performance</li>
|
|
|
34 |
</ol>
|
|
|
35 |
</div>
|
|
|
36 |
</div>
|
|
|
37 |
<form id="allocation-form">
|
|
|
38 |
<div id="customer-details" style="background:white;background-color:white;padding:10px;">
|
|
|
39 |
<h4 class="modelHeaderCustom" style="font-size:22px;">Partner Performance</h4>
|
|
|
40 |
<div>
|
|
|
41 |
<div class = "row">
|
|
|
42 |
<div class="col-lg-2 form-group">
|
|
|
43 |
<select class="form-control input-sm" id = "fofo-users" name = "fofo-users" placeholder="Partners" >
|
|
|
44 |
|
|
|
45 |
<option value="" disabled selected>Partners</option>
|
|
|
46 |
#foreach($fofoId in $customRetailersMap.keySet())
|
|
|
47 |
<option value="$fofoId"
|
|
|
48 |
data-email="$customRetailersMap.get($fofoId).getEmail()">$customRetailersMap.get($fofoId).getBusinessName()</option>
|
|
|
49 |
#end
|
|
|
50 |
</select>
|
|
|
51 |
|
|
|
52 |
</div>
|
|
|
53 |
|
|
|
54 |
<div class="col-lg-2">
|
|
|
55 |
<button class="btn btn-default partnerPerformance" type = "button">Partner Performance</button>
|
|
|
56 |
</div>
|
|
|
57 |
|
|
|
58 |
</div>
|
|
|
59 |
</div>
|
|
|
60 |
</div>
|
|
|
61 |
</form>
|
|
|
62 |
|
|
|
63 |
|
|
|
64 |
</section>
|
|
|
65 |
|
|
|
66 |
<div class="partner-performance-container">
|
|
|
67 |
</div>
|
|
|
68 |
|
|
|
69 |
|