Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="col-lg-6">

      <h2>Pincode search</h2>
        <table class="table table-border table-condensed table-bordered" id="search-pincode-table" style="width:100%">

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

            <tr style="color:black;">
                <th>Partner Name</th>
                 
                <th>Remove</th>
                </tr>
            </thead>
            <tbody>
             #foreach($ppl in $partnerPincodeList )
            <tr>
                     <td style="background:#87CEEB;">$customRetailerMap.get($ppl.getFofoId()).getBusinessName()</td>
           
                       <td>
                        <button type="submit" form="form2" value="SubmitPincode" data-id="$ppl.getId()" data-pin="$ppl.getPincode()" data-fofoid="$ppl.getFofoId()"
                                style="background:#FA8072;"
                                class="remove-pincode">Remove
                        </button>
                    </td>
             </tr>       
             #end
            </tbody>

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

<script type="text/javascript">

    $(document).ready(function () {
    
    
                
      var dtable = $('#search-pincode-table').DataTable({
             "scrollX": true,
            "scrollY": "true",
            scrollCollapse: true,
              "fixedHeader": true,
             });
           });