1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
<HTML>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<script language="javascript">
function showConfig(id){
var temp = document.getElementById(id).style.display;
if (temp == 'none') {
document.getElementById(id).style.display = 'block';
}else{
document.getElementById(id).style.display = 'none';
}
}
</script>
<style>
* {
font: medium Arial;
}
h1 {
font: large Arial;
}
table {
background-color: #FFF;
border: 1px #FFF solid ;
padding: 0px;
empty-cells: show;
}
tr {
background-color: #eacc74;
}
th{
font: large Arial;
}
td {
padding: 5px;
}
a:link{
font-weight: bold;
color: #1256B5;
text-decoration: none
}
a:visited {
color: #1256B5;
text-decoration: none
}
a:hover{
color: #FF3300;
text-decoration: underline
}
</style>
</head>
<body>
<table>
<tr>
<th> col 1 </th>
<th> col 2 </th>
<th> col 3 </th>
<th> col 4 </th>
</tr>
<tr>
<td class="label">
<a href="javascript:showConfig('id0x0d006028');"> line 1 </a>
</td>
<td class="expr"> data </td>
<td class="expr"> data </td>
<td class="expr"> data </td>
</tr>
<tr class="param" id="id0x0d006028">
<td colspan="4">
<table with="100%">
<tr class="vxmlroute">
<td class="label"> subtitle 1.1 </td>
<td class="expr"> true </td>
</tr>
<tr class="vxmlroute">
<td class="label"> subtitle 1.2 </td>
<td class="expr"> true </td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="label">
<a href="javascript:showConfig('id0x0c3a7080');"> line 2 </a>
</td>
<td class="expr"> data </td>
<td class="expr"> data </td>
<td class="expr"> data </td>
</tr>
<tr class="param" id="id0x0c3a7080">
<td colspan="4">
<table with="100%">
<tr class="vxmlroute">
<td class="label"> subtitle 2.1 </td>
<td class="expr"> true </td>
</tr>
<tr class="vxmlroute">
<td class="label"> subtitle 2.1 </td>
<td class="expr"> true </td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html> |
Partager