Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
28071 tejbeer 1
 
2
<script>
3
	$(document).ready(function() {
4
        $('#block-brand').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>BLOCK BRANDS</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 = "block-brand" name = "block-brand" placeholder="Block Brands" >
35
 
36
					<option value="" disabled selected>Block 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 block-brand-submit">submit</button>
44
		        </div>
45
 
46
	     <div>
47
        <div class="partnersbyblockbrands" style="margin:5px">
48
	    </div>
49
	</div>
50
 
51
 
52
 
53
 
54
 
55
 
56
 
57
	</section>