Subversion Repositories SmartDukaan

Rev

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

`<section class="wrapper">
    <div class="row">
        <div class="col-lg-12">
            <h3 class="page-header">ADD PARTNER KYC OLD</i></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>ADD PARTNER KYC OLD</li>
              
            
            </ol>
        </div>
    </div>
    <div class="col-lg-12">
        <table class="table table-border table-condensed table-bordered" id="legalkyctable" style="width:100%">

            <thead class="row kyctable" style="background:#F5F5F5;">

            <tr style="color:black;">
                <th>Code</th>
                <th>Business Name</th>
                <th>Id</th>
                <th>Status</th>
                <th>Business Type</th>
                <th>First Name</th>
                <th>Middle Name</th>
                    <th>Last Name</th>
                    <th>Father Name</th>
                    <th>DOB</th>
                    <th>Gender</th>
                    <th>Marital Status</th>
                        <th>Email</th>
                        <th>Mobile</th>
                        <th>Pan no</th>
                        <th>Pan Doc</th>
                        <th>Poa No</th>
                        <th>Poa Type</th>
                        <th>Poa Front Doc</th>      
                        <th>Poa Back Doc</th>      
                        <th>Address1</th> 
                        <th>Address2</th>
                        <th>Address3</th>
                <th>City</th>
                <th>State</th>
                <th>Pincode</th>
                        <th>Action</th>
                         
                    </tr>
            </thead>
            <tbody>
            
         
           #foreach($fofoKyc in $fofoKycs)
   
         
              <tr>
                   #parse("legal-kyc-row.vm")

                </tr>
            
            #end
            
          
            
            </tbody>

        </table>
    </div>
    
    
  
</section>


<script type="text/javascript">
    var dtable ;
    $(document).ready(function () {
      dtable = $('#legalkyctable').DataTable({
             "scrollX": true,
             "scrollY": "518px",
              scrollCollapse: true,
             "fixedHeader": true,
             "order": [[ 0, "desc" ]],
                    fixedColumns:   {
                        leftColumns: 1
                    }
                       
     });   
     
     

       
  });

   
    
</script>