Subversion Repositories SmartDukaan

Rev

Rev 29250 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed


<script>
        
     $(document).ready(function() {
          var table = $('#providerdetails').DataTable( {
                   "scrollX": true,
                        orderCellsTop: true,
                        fixedHeader: true
                    });
                });
                
                    $('#provider').multiselect({
                includeSelectAllOption: true,
                multiple:true,
                maxHeight: 200,
                buttonWidth: '180px',
                numberDisplayed: 1,
        nonSelectedText: 'Items',
        nSelectedText: ' - Items Selected',
        allSelectedText: 'All Items 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>LOGISTICS</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>Provider Tat</li>  
                                        
                        </ol>
                </div>
        </div>
        
        
        <form class="form-horizontal">
                        
        <label class="control-label col-sm-2" for="excelfile">CSV File:</label>
                            <div class="col-lg-3">
                                <div class="input-group">
                                        <input class="form-control" type="file" id="providertatfile" name="providertatfile" value="Upload CSv">
                                        <span class="input-group-btn">
                                                <button  type = "button" class="btn btn-default providertatupload">
                                                            Uplaod
                                                        </button>
                                                </span>
                                        </div>
                            </div> 
                            
        </form  
        
        
             <div class="col-lg-2">
                                <a class="btn btn-default" id="uploadTatTemplate">
                                            Download Tempate
                                        </a>
                </div> 
                
                
         <div class= "row" style="margin-top:35px">
         <div class="col-lg-2">
         
                         <select class="form-control input-sm" id = "provider" name="Providers" placeholder="Providers">
                         <option value="" disabled selected>Providers</option>          
                
                          #foreach($provider in $providers))
           
                        <option value="$provider.getId()">$provider.getName()</option>
                        
                  #end
                </select>
         </div>
         
         <div class="col-lg-2">
                        
                                        <button class="btn btn-primary providertat" type="button">Submit</button>

                                
                        </div>
         </div>
         
         
         <div  class="providertatContainer">
         
         
         </div>
        
        


        </section>