When a user adds a row in a table, it should display the input "file" feature under the "Image" column for each row so that the user can select a file for each row. But it does not display the file input within the row when I add a row.
I don't use Jquery. I don't know Jquery.
As far as I know you must add <tbody> ..... </tbody> in code.
Message box displays <tbody>....</tbody> in Firefox.
Code:
<table id="mytable" border="1">
<tr>
<th class="image">Image</th>
</tr>
</table>
<script type="text/javascript">
var el= document.getElementById('mytable');
alert(el.innerHTML); // it displays <tbody>....</tbody> in Firefox.
</script>
My code is working in Firefox.
Code:
<script type="text/javascript">
function addRow(){
var tr = "<tr></tr>";
var td = "<td></td>";
var inp = "<input type='file' name='imageFile' id='imageFile'>";
td= td.replace(/(d>)/, "$1"+inp );
tr= tr.replace(/(r>)/, "$1"+td );
//alert(tr);
var table=document.getElementById('mytable');
//alert(table.innerHTML);
table.innerHTML= table.innerHTML.replace(/(<\/tbody>)$/, tr + "$1");
// alert(table.innerHTML);
}
</script>
</head>
<body>
<input type="button" value="click me" onclick="addRow()">
<table id="mytable" border="1"><tbody>
<tr>
<th class="image">Image</th>
</tr>
</tbody></table>
Last edited by Ayşe; 12-28-2011 at 08:42 AM.
The Time Through Ages
In the Name of Allah, Most Gracious, Most Merciful
1. By the Time,
2. Verily Man is in loss,
3. Except such as have Faith, and do righteous deeds, and (join together) in the mutual enjoining of Truth, and of Patience and Constancy.
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script type="text/javascript">
function ekle() {
var $tr = $("<tr></tr>");
var $image = $("<td class='image'></td>");
var $imagefile = $("<input type='file' name='imageFile' id='imageFile' >")
$image.append($imagefile);
$tr.append($image);
$('#mytable').append($tr);
}
</script>
</head>
<body>
<input type="button" value="click me" onclick="ekle()">
<table border="1"><tbody id="mytable">
<tr>
<th class="image">Image</th>
</tr>
</tbody></table>
Last edited by Ayşe; 12-29-2011 at 02:26 PM.
The Time Through Ages
In the Name of Allah, Most Gracious, Most Merciful
1. By the Time,
2. Verily Man is in loss,
3. Except such as have Faith, and do righteous deeds, and (join together) in the mutual enjoining of Truth, and of Patience and Constancy.
Bookmarks