| 30497 |
amit.gupta |
1 |
<section class="wrapper">
|
|
|
2 |
<div class="row">
|
|
|
3 |
<div class="col-lg-12">
|
|
|
4 |
<h3 class="page-header"><i class="icon_document_alt"></i>SERVICE</h3>
|
|
|
5 |
<ol class="breadcrumb">
|
|
|
6 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
|
|
|
7 |
<li><i class="icon_document_alt"></i>ADD BRAND_SERVICE</li>
|
|
|
8 |
</ol>
|
|
|
9 |
</div>
|
|
|
10 |
</div>
|
|
|
11 |
<div style="background:white;background-color:white;padding:10px;">
|
|
|
12 |
<div class="row">
|
|
|
13 |
<div class="col-lg-2 form-group">
|
|
|
14 |
<select class="form-control input-sm" id="serviceName" placeholder="serviceName">
|
|
|
15 |
<option value="" selected disabled>ServiceName</option>
|
|
|
16 |
#foreach($serviceAndIdMapKey in $serviceAndIdMap.keySet())
|
|
|
17 |
#if($serviceAndIdMapKey==$serviceId)
|
|
|
18 |
<option value="$serviceAndIdMapKey"
|
|
|
19 |
selected>$serviceAndIdMap.get($serviceAndIdMapKey)</option>
|
|
|
20 |
#else
|
|
|
21 |
<option value="$serviceAndIdMapKey">$serviceAndIdMap.get($serviceAndIdMapKey)</option>
|
|
|
22 |
#end
|
|
|
23 |
#end
|
|
|
24 |
</select>
|
|
|
25 |
</div>
|
|
|
26 |
<div class="col-lg-2 form-group" id="service-container">
|
|
|
27 |
<select class="form-control input-sm" id="tag-listing-brands" placeholder="Brands" multiple="multiple">
|
|
|
28 |
</select>
|
|
|
29 |
</div>
|
|
|
30 |
<div class="col-lg-2 form-group">
|
|
|
31 |
<button class="btn btn-primary service-brand-button" type="button"
|
|
|
32 |
style="width:100%;border-radius:0px;">Add Brand
|
|
|
33 |
</button>
|
|
|
34 |
</div>
|
|
|
35 |
</div>
|
|
|
36 |
</div>
|
|
|
37 |
<div class="row">
|
|
|
38 |
<div id="added-brand-to-service">
|
|
|
39 |
</div>
|
|
|
40 |
</div>
|
|
|
41 |
</section>
|
| 24317 |
govind |
42 |
<script type="text/javascript">
|
| 30497 |
amit.gupta |
43 |
$(document).ready(function () {
|
|
|
44 |
configureBrandsDropDown();
|
|
|
45 |
})
|
|
|
46 |
</script>
|