<HTML>
<head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
    <link href="https://cdn.datatables.net/1.13.7/css/jquery.dataTables.min.css" rel="stylesheet"/>
    <script src="https://cdn.datatables.net/1.13.7/js/jquery.dataTables.min.js"></script>
    <title>@ViewData("Title")</title>
</head>
<BODY>
   <table id="FeePaymentViewGrid" class="display nowrap cell-border ">
                     <thead>
                         <tr>
                             <th>
                                 No
                             </th>
                             <th>
                                 会費種別
                             </th>
                             <th>
                                 対象年月
                             </th>
                             <th>
                                 人数
                             </th>
                             <th>
                                 金額
                             </th>
                             <th>
                                 状況
                             </th>
                             <th>
                                 入金日
                             </th>
                         </tr>
                     </thead>
                     <tbody>
                                 <tr>
                                     <td>0</td>
                                     <td>1</td>
                                     <td>2</td>
                                     <td>3</td>
                                     <td>4</td>
                                     <td>5</td>
                                     <td>6</td>
                                 </tr>
                     </tbody>
                 </table>       
</BODY>
</HTML>
 
body {
  font: 90%/1.45em "Helvetica Neue", HelveticaNeue, Verdana, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fff;
}
 
 $(document).ready(function () {
        $('#FeePaymentViewGrid').DataTable({
            responsive: true,
            "scrollY": true,
            "language": {
                "info": "表示中のページ _PAGE_ の _PAGES_",
                "paginate": {
                    "first": "初め",
                    "last": "最後",
                    "next": "次え",
                    "previous": "前の"
                },
                "emptyTable": "テーブルにデータがありません",
                "infoEmpty": "表示中 0 に 0 の 0 エントリ",
            }
        });
        
    });
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers