Javascript Dynamically build HTML table with button cell
up vote
0
down vote
favorite
Trying to get my dynamic table to have a button in last column. Have had no luck. Any help much appreciated.
var removeRow=document.createElement("BUTTON");
//Add the data rows.
for (var i = 1; i < data.length; i++) {
row = table.insertRow(-1);
for (var j = 0; j < 3; j++) {
var cell = row.insertCell(-1);
if (j==0) {
cell.innerHTML = data[i].userId}
if (j==1) {
cell.innerHTML = data[i].id}
if (j==2) {
cell.innerHTML = data[i].title}
if (j==3) {
cell.appendChild(removeRow)// Not working when replace data[i].field with button variable.
}
}
javascript html dom
add a comment |
up vote
0
down vote
favorite
Trying to get my dynamic table to have a button in last column. Have had no luck. Any help much appreciated.
var removeRow=document.createElement("BUTTON");
//Add the data rows.
for (var i = 1; i < data.length; i++) {
row = table.insertRow(-1);
for (var j = 0; j < 3; j++) {
var cell = row.insertCell(-1);
if (j==0) {
cell.innerHTML = data[i].userId}
if (j==1) {
cell.innerHTML = data[i].id}
if (j==2) {
cell.innerHTML = data[i].title}
if (j==3) {
cell.appendChild(removeRow)// Not working when replace data[i].field with button variable.
}
}
javascript html dom
What is cell? Without the html it's hard to tell, but possibly try:cell.parentElement.appendChild(removeRow)
– acaputo
Nov 19 at 22:19
That is strange, do it in one line, do a statment.cell.innerHTML="<td>"+data[i].userId ....+"<td>".
– Cryptopat
Nov 19 at 22:22
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Trying to get my dynamic table to have a button in last column. Have had no luck. Any help much appreciated.
var removeRow=document.createElement("BUTTON");
//Add the data rows.
for (var i = 1; i < data.length; i++) {
row = table.insertRow(-1);
for (var j = 0; j < 3; j++) {
var cell = row.insertCell(-1);
if (j==0) {
cell.innerHTML = data[i].userId}
if (j==1) {
cell.innerHTML = data[i].id}
if (j==2) {
cell.innerHTML = data[i].title}
if (j==3) {
cell.appendChild(removeRow)// Not working when replace data[i].field with button variable.
}
}
javascript html dom
Trying to get my dynamic table to have a button in last column. Have had no luck. Any help much appreciated.
var removeRow=document.createElement("BUTTON");
//Add the data rows.
for (var i = 1; i < data.length; i++) {
row = table.insertRow(-1);
for (var j = 0; j < 3; j++) {
var cell = row.insertCell(-1);
if (j==0) {
cell.innerHTML = data[i].userId}
if (j==1) {
cell.innerHTML = data[i].id}
if (j==2) {
cell.innerHTML = data[i].title}
if (j==3) {
cell.appendChild(removeRow)// Not working when replace data[i].field with button variable.
}
}
javascript html dom
javascript html dom
asked Nov 19 at 22:11
David Jones
406
406
What is cell? Without the html it's hard to tell, but possibly try:cell.parentElement.appendChild(removeRow)
– acaputo
Nov 19 at 22:19
That is strange, do it in one line, do a statment.cell.innerHTML="<td>"+data[i].userId ....+"<td>".
– Cryptopat
Nov 19 at 22:22
add a comment |
What is cell? Without the html it's hard to tell, but possibly try:cell.parentElement.appendChild(removeRow)
– acaputo
Nov 19 at 22:19
That is strange, do it in one line, do a statment.cell.innerHTML="<td>"+data[i].userId ....+"<td>".
– Cryptopat
Nov 19 at 22:22
What is cell? Without the html it's hard to tell, but possibly try:
cell.parentElement.appendChild(removeRow)– acaputo
Nov 19 at 22:19
What is cell? Without the html it's hard to tell, but possibly try:
cell.parentElement.appendChild(removeRow)– acaputo
Nov 19 at 22:19
That is strange, do it in one line, do a statment.
cell.innerHTML="<td>"+data[i].userId ....+"<td>".– Cryptopat
Nov 19 at 22:22
That is strange, do it in one line, do a statment.
cell.innerHTML="<td>"+data[i].userId ....+"<td>".– Cryptopat
Nov 19 at 22:22
add a comment |
1 Answer
1
active
oldest
votes
up vote
3
down vote
In your loop, j never gets to 3 (it says j < 3 in your second for statement).
If you change that to j < 4 or j <= 3 it should work.
Apart from that, you are only creating one BUTTON element, which you will be appending to all rows. Every time you append it to a row, it will be removed from the previous row it was on, so you'll still be left with just one button.
I have corrected 3 to 4. Cell is derived for the row below var row = table.insertRow(-1); for (var i = 0; i < columnCount; i++) { var headerCell = document.createElement("TH"); headerCell.innerHTML = 'Header1'; row.appendChild(headerCell); }
– David Jones
Nov 19 at 22:26
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
In your loop, j never gets to 3 (it says j < 3 in your second for statement).
If you change that to j < 4 or j <= 3 it should work.
Apart from that, you are only creating one BUTTON element, which you will be appending to all rows. Every time you append it to a row, it will be removed from the previous row it was on, so you'll still be left with just one button.
I have corrected 3 to 4. Cell is derived for the row below var row = table.insertRow(-1); for (var i = 0; i < columnCount; i++) { var headerCell = document.createElement("TH"); headerCell.innerHTML = 'Header1'; row.appendChild(headerCell); }
– David Jones
Nov 19 at 22:26
add a comment |
up vote
3
down vote
In your loop, j never gets to 3 (it says j < 3 in your second for statement).
If you change that to j < 4 or j <= 3 it should work.
Apart from that, you are only creating one BUTTON element, which you will be appending to all rows. Every time you append it to a row, it will be removed from the previous row it was on, so you'll still be left with just one button.
I have corrected 3 to 4. Cell is derived for the row below var row = table.insertRow(-1); for (var i = 0; i < columnCount; i++) { var headerCell = document.createElement("TH"); headerCell.innerHTML = 'Header1'; row.appendChild(headerCell); }
– David Jones
Nov 19 at 22:26
add a comment |
up vote
3
down vote
up vote
3
down vote
In your loop, j never gets to 3 (it says j < 3 in your second for statement).
If you change that to j < 4 or j <= 3 it should work.
Apart from that, you are only creating one BUTTON element, which you will be appending to all rows. Every time you append it to a row, it will be removed from the previous row it was on, so you'll still be left with just one button.
In your loop, j never gets to 3 (it says j < 3 in your second for statement).
If you change that to j < 4 or j <= 3 it should work.
Apart from that, you are only creating one BUTTON element, which you will be appending to all rows. Every time you append it to a row, it will be removed from the previous row it was on, so you'll still be left with just one button.
edited Nov 19 at 22:41
Derek Pollard
3,77422239
3,77422239
answered Nov 19 at 22:16
JoerT
374
374
I have corrected 3 to 4. Cell is derived for the row below var row = table.insertRow(-1); for (var i = 0; i < columnCount; i++) { var headerCell = document.createElement("TH"); headerCell.innerHTML = 'Header1'; row.appendChild(headerCell); }
– David Jones
Nov 19 at 22:26
add a comment |
I have corrected 3 to 4. Cell is derived for the row below var row = table.insertRow(-1); for (var i = 0; i < columnCount; i++) { var headerCell = document.createElement("TH"); headerCell.innerHTML = 'Header1'; row.appendChild(headerCell); }
– David Jones
Nov 19 at 22:26
I have corrected 3 to 4. Cell is derived for the row below var row = table.insertRow(-1); for (var i = 0; i < columnCount; i++) { var headerCell = document.createElement("TH"); headerCell.innerHTML = 'Header1'; row.appendChild(headerCell); }
– David Jones
Nov 19 at 22:26
I have corrected 3 to 4. Cell is derived for the row below var row = table.insertRow(-1); for (var i = 0; i < columnCount; i++) { var headerCell = document.createElement("TH"); headerCell.innerHTML = 'Header1'; row.appendChild(headerCell); }
– David Jones
Nov 19 at 22:26
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53383381%2fjavascript-dynamically-build-html-table-with-button-cell%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What is cell? Without the html it's hard to tell, but possibly try:
cell.parentElement.appendChild(removeRow)– acaputo
Nov 19 at 22:19
That is strange, do it in one line, do a statment.
cell.innerHTML="<td>"+data[i].userId ....+"<td>".– Cryptopat
Nov 19 at 22:22