Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
157
rated 0 times [  163] [ 6]  / answers: 1 / hits: 26701  / 9 Years ago, fri, october 2, 2015, 12:00:00

Following situation:



I'm programming a web-app, which get data from a server. I want to put these data in an table with two columns. In the first column there should be a name and in the second column should be a drop down list to choose which detailed information I want to get about the name in the first column.



My code:



<html>
<head>
<script type=text/javascript charset=utf-8 src=cordova.js></script>
<script src=datajs-1.0.2.min.js></script>

<script type=text/javascript>
function readCustomerSuccessCallback(data, response) {

var customerTable = document.getElementById(CustomerTable);
for (var i = 0; i < data.results.length; i++) {
var row = customerTable.insertRow(1);
var cell1 = row.insertCell(0);
var cell2 = row.insertCell(1);
cell1 = data.results[i].CUSTOMER_NAME;
cell2.innerHTML = '<a href=javascript:void(0); onclick=readProducts(' + data.results[i].STATION_ID + ')>' + data.results[i].CUSTOMER_NAME + '</a>';

}
}
</head>
<body>

<table id=CustomerTable>
<thead>
<tr>
<th>Customer</th>
<th>Filter the Data</th>
</tr>
</thead>
<tbody>
<tr>
<td>EXAMPLE</td>
<td class=dropdown>
<form action= name=FILTER>
<select name=filter_for size=5>
<option value=Druck>Druck</option>
<option value=Zahl>Zahl</option>
<option value=Temperatur>Temperatur</option>
<option value=Drehzahl>Drehzahl</option>
<option value=andere>andere</option>
</select>
</form>
</td>
</tr>
</tbody>
</table>
</body>
</html>


My Problem is, that the function does not create the drop down list in the second column. I'm new with html and Javascript and searching in the web didn't help.


More From » html

 Answers
1

you can try this one:



<body 

<table id=CustomerTable>
<thead>
<tr>
<th>Customer</th>
<th>Filter the Data</th>
</tr>
</thead>
<tbody>
<tr>
<td>EXAMPLE</td>
<td class=dropdown>
<form action= name=FILTER>
<select name=filter_for >
<option value=Druck>Druck</option>
<option value=Zahl>Zahl</option>
<option value=Temperatur>Temperatur</option>
<option value=Drehzahl>Drehzahl</option>
<option value=andere>andere</option>
</select>
</form>
</td>
</tr>
</tbody>
</table>
</body>


DEMO FIDDLE


[#64859] Wednesday, September 30, 2015, 9 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
patienceannel

Total Points: 674
Total Questions: 101
Total Answers: 101

Location: Northern Mariana Islands
Member since Fri, Jan 15, 2021
3 Years ago
patienceannel questions
Fri, Mar 11, 22, 00:00, 2 Years ago
Tue, Oct 20, 20, 00:00, 4 Years ago
Wed, Jul 24, 19, 00:00, 5 Years ago
;