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