Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
28272 tejbeer 1
 
2
<script>
3
	$(document).ready(function() {
4
        $('#show-brands').multiselect({
5
    		includeSelectAllOption: true,
6
                maxHeight: 200,
7
                multiple:true,
8
        		buttonWidth: '180px',
9
        		numberDisplayed: 1,
10
        	nonSelectedText: 'Users',
11
        	nSelectedText: ' - Users Selected',
12
        	allSelectedText: 'All Users Selected',
13
        	enableFiltering: true,
14
	        enableCaseInsensitiveFiltering : true
15
        });
16
 
17
            });
18
</script>
19
<section class="wrapper">
20
	<div class="row">
21
		<div class="col-lg-12">
22
			<h3 class="page-header"><i class="icon_document_alt"></i>BRANDS LIMITS</h3>
23
			<ol class="breadcrumb">
24
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
25
				<li><i class="icon_document_alt"></i>CREATE</li>						  	
26
			</ol>
27
		</div>
28
	</div>
29
 
30
 
31
 
32
	        <div class = "row">
33
			      <div class="col-lg-2 form-group">
34
					<select  class="form-control input-sm" id = "show-brands" name = "block-brand" placeholder="All brands" >
35
 
36
					<option value="" disabled selected>Brands</option>
37
					#foreach($brand in $brands)
38
         			<option value="$brand">$brand</option>
39
         			#end
40
	                </select>
41
 
42
	             </div>
43
	             <button type="button" class="btn btn-primary brands-limit-submit">submit</button>
44
		        </div>
45
 
46
	     <div>
47
	     <div class="partnerByBrandsLimit" style="margin:5px">
48
	    </div>
49
 
50
	</div>
51
 
52
 
53
 
54
 
55
 
56
 
57
 
58
	</section>
59
 
60
 
61
 
62
 
63