| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8" />
- <title>main_entiity</title>
- <script src="./entity_AttendanceDetailFileImport.js"></script>
- <script>
- $(document).ready(function() {
- $('#checkData').click(function() {
- checkData( $('#file_id').val() );
- });
- $('#importData').click(function() {
- importData( $('#file_id').val() );
- });
- $('#testImport').click(function() {
- testImport();
- });
- });
- </script>
- </head>
- <body>
- <div style="float: left; width: 720px;">
- <div style="width: 100%;">
- <table border="1" style="width:100%">
- <tr>
- <td>file_id:</td>
- <td><input type="text" id="file_id" style="width:95%"/></td>
- </tr>
- <tr>
- <td>type:</td>
- <td>
- AttendanceDetailFileImport
- </td>
- </tr>
- <tr>
- <td colspan="2">
- <button id="checkData">CheckDataFile</button>
- <button id="importData">ImportDataFile</button>
- <button id="testImport">testImportData</button>
- </td>
- </tr>
- <tr>
- <td colspan="2">
- <textarea id="content" style="width:97%;height:300px"></textarea>
- </td>
- </tr>
- <tr>
- <td colspan="2">
- <textarea id="result" style="width:97%;height:400px"></textarea>
- </td>
- </tr>
- </table>
- </div>
- </div>
-
-
- </body>
- </html>
|