Subversion Repositories SmartDukaan

Rev

Rev 32348 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<script>
$(document).ready(function() {
  $('#activeStore').DataTable(
  {
    "bPaginate": true,
    "bLengthChange": true,
    "bFilter": true,
    "bInfo": false,
    "bAutoWidth": false }
  );
  
  
  $(document).ready(function() {
        $('#fofo-users').multiselect({
                includeSelectAllOption: true,
                        multiple:true,
                        maxHeight: 200,
                        buttonWidth: '180px',
                        numberDisplayed: 1,
                nonSelectedText: 'Users',
                nSelectedText: ' - Users Selected',
                allSelectedText: 'All Users Selected',
                enableFiltering: true,
                enableCaseInsensitiveFiltering : true
        });
    });
   
} );
</script>
<section class="wrapper">            
        <div class="row">
                <div class="col-lg-12">
                        <h3 class="page-header"><i class="icon_document_alt"></i>Retailer</h3>
                        <ol class="breadcrumb">
                                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
                                <li><i class="icon_document_alt"></i>Reinstate Billing</li>                                                     
                        </ol>
                </div>
        </div>
        
         <div class = "row">
      <div class="col-lg-2 form-group">
         <select class="form-control input-sm" id ="fofo-users"  placeholder="partnerName" multiple="multiple">
            <option value="" selected disabled>Partner</option>
            #foreach($fofoId in $fofoIdsAndCustomRetailer.keySet())
            <option value="$fofoId">$fofoIdsAndCustomRetailer.get($fofoId).getBusinessName()</option>
            #end
         </select>
        </div> 
        <div class="col-lg-2">
        <div>
         <button class="btn btn-primary partner-info"  type="button">Submit</button> &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;
         <button class="btn btn-primary allStoreInfo"  type="button">Fetch</button>
         </div>
         </div>

         <div class="storePartnerInfo" style="margin:5px"></div>
             </div>

        </div>
</section>