Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
25496 tejbeer 1
 
2
<script type="text/javascript">
3
var customRetailers = ${customRetailers};
4
	$("#FofoId").typeahead({
5
	  source: customRetailers,
6
	  autoSelect: true,
7
	  displayText:function(item){return item.businessName + "-" + item.address.city;},
8
	  afterSelect:	function(currentItem){
9
	  					currentFofoId = currentItem.partnerId;
10
	  					currentFofoEmail = currentItem.email;
11
	  				}
12
	});
13
 
14
</script>
15
 
16
 
17
<section class="wrapper">
18
	<div class="row">
19
		<div class="col-lg-12">
20
			<h3 class="page-header"><i class="icon_document_alt"></i>Approve REFFERALs</h3>
21
			<ol class="breadcrumb">
22
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
23
				<li><i class="icon_document_alt"></i>Approve Refferals</li>						  	
24
			</ol>
25
		</div>
26
	</div>
27
 
28
		<div style="background:white;background-color:white;">
29
		<h4 class="modelHeaderCustom" style="font-size:22px;"></h4>
30
		<div>
31
		<form id = "wallet-form" >
32
			<div class = "row">
33
				<div class="col-lg-2 form-group">
34
			    	<input id="FofoId" type="text" class="typeahead form-control form-control-sm" placeholder="Partner Name" data-provide="typeahead" 
35
			    	 #if(${retailerName}) value="${retailerName}" #end
36
			    	 autocomplete="off"/>
37
 
38
			    </div>
39
			    <div class="col-lg-2 form-group">
40
					<button class="btn btn-primary fetchApproveRefferals" type="button">Search Refferals</button>
41
				</div>
42
			</div>
43
		</form>
44
 
45
		 <div class="refferal-approve-info-container">
46
		</div>	
47
	</section>