And delete the question http:Q_21185661.html as long as nobody comments into that question.
Afterwards you have to ask Community Support to close the duplicate question.
Main Topics
Browse All TopicsHi, my code is:
var newRow = document.getElementById("t
newCell = newRow.insertCell();
newCell.innerHTML = "<font face=Verdana size=-1>" + n + "</font>";
newCell.setAttribute("rows
newCell = newRow.insertCell();
newCell.innerHTML = "<font face=Verdana size=-1>" + sfnSubfieldsComboBox(vsCod
newCell.setAttribute("rows
newCell.setAttribute("alig
It gives no run time error but how to solve it?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
And delete the question http:Q_21185661.html as long as nobody comments into that question.
Afterwards you have to ask Community Support to close the duplicate question.
why don't you create the table via innerHTML
1. put a div somewhere where the table should be f.e.: <div id="tbldiv"></div>
2. create the html-code via javascript f.e.: var temp='<table id="bla"><tr><td rowspan=2>1,3</td><td>2</t
3. place the innerHTML-code into the div: f.e.: document.getElementById('t
4. after that you can access the table via dhtml. maybe for IE you will need to call another function with a setTimeout('function2("bla
hope that helps (and you r able to understand my english :)
i think this should be a little bit easier.
By the way. The best idea was from PeterCN: rowSpan
Here my test:
<script>
function addRow(){
n = 100;
var newRow = document.getElementById("t
newCell = newRow.insertCell();
newCell.innerHTML = "<font face=Verdana size=-1>" + n + "</font>";
newCell.setAttribute("rowS
newCell = newRow.insertCell();
newCell.innerHTML = "<font face=Verdana size=-1>" + 'sfnSubfieldsComboBox(vsCo
newCell.setAttribute("rowS
newCell.setAttribute("alig
}
</script>
<table id="tblAddSubFields" border="1">
<tr><td>a</td><td>b</td><t
<tr><td>a</td><td>b</td><t
<tr><td>a</td><td>b</td><t
<tr><td>a</td><td>b</td><t
</table>
<a href="javascript:addRow()"
Strange effects come when you add twice to same row those spans, but that's another story.
Business Accounts
Answer for Membership
by: ZvonkoPosted on 2004-10-27 at 23:27:34ID: 12430787
You give no index for the row where the new row has to be inserted, so it is appended to the end of the table.
How do you expect to see the rowspan at end of the table?
Appending three rows should also not have any visible effects.