<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="../../css/global.css"/>
</head>
<body>
<form id="EmpListForm">
<input type="button" id="doCreate" value="Create" onclick="location.href='empEdit.html'"/><br/>
<table id="empGridXY" height="200px" border="1">
        <colgroup>
                <col span="1" width="60px" class="T_leftFixed" />
        </colgroup>
        <thead>
                <tr height="50px">
                        <th class="right"><label id="idLabel">id</label></th>
                        <th class="right"><label id="empNoLabel">empNo</label></th>
                        <th><label id="empNameLabel">empName</label></th>
                        <th class="right"><label id="mgrIdLabel">mgrId</label></th>
                        <th><label id="hiredateLabel">hiredate</label></th>
                        <th class="right"><label id="salLabel">sal</label></th>
                        <th class="right"><label id="deptIdLabel">deptId</label></th>
                        <th class="right"><label id="versionNoLabel">versionNo</label></th>
                        <th><br/></th>
                </tr>
        </thead>
        <tbody>
                <tr class="row_even">
                        <td class="right"><span id="id">id</span></td>
                        <td class="right"><span id="empNo">empNo</span></td>
                        <td><span id="empName">empName</span></td>
                        <td class="right"><span id="mgrId">mgrId</span></td>
                        <td><span id="hiredate">hiredate</span></td>
                        <td class="right"><span id="sal">sal</span></td>
                        <td class="right"><span id="deptId">deptId</span></td>
                        <td class="right"><span id="versionNo">versionNo</span></td>
                        <td><a id="goEmpEdit-edit" href="empEdit.html?fixed_crudType=2&id=id&versionNo=versionNo">Edit</a>
                        <a id="goEmpConfirm" href="empConfirm.html?fixed_crudType=3&id=id&versionNo=versionNo">Delete</a>
                        <a id="goEmpConfirm-confirm" href="empConfirm.html?fixed_crudType=1&id=id&versionNo=versionNo">Inquire</a>
                        </td>
                </tr>
        </tbody>
</table>
</form>
</body></html>