j'ai d'autres infos...


j'ai créer un page web avec moins d'elements pour isoler le problème

voici mon code :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
	<head>
		<title>IFOTEC SUPERVISION</title>
		<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

		<style type="text/css">
body
{
	margin: 0;
	padding: 5px;
}

form
{
	margin: 0;
	padding: 0;
}

table
{
	margin: 10px auto;
	padding: 0;
	font-size: 0.9em;
	border-collapse: collapse;
	border: 2px solid black;
	color: black;
}

th
{
	font-weight: bold;
	background-color: black;
	color: white;
	font-weight: bold;
}

th, td
{
	border: 1px solid black;
	text-align: center;
	padding: 0.2em 1em;
	margin: 0;
}

.retour
{
	clear: both;
}

.ClassVID
{
	width: 3em;
	text-align: center;
}

.RowsEnb td
{
	color: rgb(160,160,160);
	background-color: rgb(245,245,245);
}
		</style>

<script type="text/javascript">
// <![CDATA[
function Init(){}
function MAJListBox(a){}
function CtrlVID(a){}
// ]]>
</script>

</head>

	<body onload="Init()">
		<form id="Configuration" action="">
		
				<table>
					<thead>

						<tr>
							<th colspan="3">VLAN</th>
							<th colspan="6">Port</th>

							<th></th>
						</tr>

						<tr>
							<th>#</th>
							<th>Enable</th>
							<th>VID</th>
							<th>1</th>

							<th>2</th>
							<th>3</th>
							<th>4</th>
							<th>Uplink</th>
							<th>Manager</th>
							<th></th>

						</tr>
					</thead>

					<tbody>
						<tr>
							<td rowspan="2">
								<select id="NUMBER" onchange="MAJListBox(this.value)">
									<option value="0">00</option>
									<option value="1">01</option>

									<option value="2">02</option>
									<option value="3">03</option>
									<option value="4">04</option>
									<option value="5">05</option>
									<option value="6">06</option>
									<option value="7">07</option>

									<option value="8">08</option>
									<option value="9">09</option>
									<option value="10">10</option>
									<option value="11">11</option>
									<option value="12">12</option>
									<option value="13">13</option>

									<option value="14">14</option>
									<option value="15">15</option>
								</select>
							</td>
							
							<td rowspan="2"><input type="checkbox" id="ENABLE"/></td>
							<td rowspan="2">
								<input type="text" onkeyup="CtrlVID(this)" onmouseup="CtrlVID(this)"/>
							</td>

							<td><input type="checkbox" id="MEMBER0"/></td>
							<td><input type="checkbox" id="MEMBER1"/></td>
							<td><input type="checkbox" id="MEMBER2"/></td>
							<td><input type="checkbox" id="MEMBER3"/></td>
							<td><input type="checkbox" id="MEMBER4"/></td>
							<td><input type="checkbox" id="MEMBER5"/></td>
							<td>Member</td>
						</tr>

						<tr>
							<td><input type="checkbox" id="TAGGED0"/></td>
							<td><input type="checkbox" id="TAGGED1"/></td>
							<td><input type="checkbox" id="TAGGED2"/></td>
							<td><input type="checkbox" id="TAGGED3"/></td>
							<td><input type="checkbox" id="TAGGED4"/></td>
							<td><input type="checkbox" id="TAGGED5"/></td>
							<td>Untag Output</td>

						</tr>
					</tbody>
				</table>
		</form>

	</body>
</html>
=> lorsque je visualise la page web en local tout va bien. Mais si je la regarde a a partir de mon sevreur, alors le tableau ne s'affiche pas correctment


si je remplace les lignes :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
<select id="NUMBER" onchange="MAJListBox(this.value)">
<input type="text" onkeyup="CtrlVID(this)" onmouseup="CtrlVID(this)"/>
par (suppression du javascript):
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
<select id="NUMBER">
<input type="text"/>
ou si je supprime :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
<script type="text/javascript">
// <![CDATA[
function Init(){}
function MAJListBox(a){}
function CtrlVID(a){}
// ]]>
</script>
=> je n'ai plus de problèmes d'affichage