Javascript Dynamically build HTML table with button cell












0















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.
}
}









share|improve this question























  • What is cell? Without the html it's hard to tell, but possibly try: cell.parentElement.appendChild(removeRow)

    – acaputo
    Nov 19 '18 at 22:19











  • That is strange, do it in one line, do a statment. cell.innerHTML="<td>"+data[i].userId ....+"<td>".

    – Cryptopat
    Nov 19 '18 at 22:22
















0















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.
}
}









share|improve this question























  • What is cell? Without the html it's hard to tell, but possibly try: cell.parentElement.appendChild(removeRow)

    – acaputo
    Nov 19 '18 at 22:19











  • That is strange, do it in one line, do a statment. cell.innerHTML="<td>"+data[i].userId ....+"<td>".

    – Cryptopat
    Nov 19 '18 at 22:22














0












0








0








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.
}
}









share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 19 '18 at 22:11









David JonesDavid Jones

406




406













  • What is cell? Without the html it's hard to tell, but possibly try: cell.parentElement.appendChild(removeRow)

    – acaputo
    Nov 19 '18 at 22:19











  • That is strange, do it in one line, do a statment. cell.innerHTML="<td>"+data[i].userId ....+"<td>".

    – Cryptopat
    Nov 19 '18 at 22:22



















  • What is cell? Without the html it's hard to tell, but possibly try: cell.parentElement.appendChild(removeRow)

    – acaputo
    Nov 19 '18 at 22:19











  • That is strange, do it in one line, do a statment. cell.innerHTML="<td>"+data[i].userId ....+"<td>".

    – Cryptopat
    Nov 19 '18 at 22:22

















What is cell? Without the html it's hard to tell, but possibly try: cell.parentElement.appendChild(removeRow)

– acaputo
Nov 19 '18 at 22:19





What is cell? Without the html it's hard to tell, but possibly try: cell.parentElement.appendChild(removeRow)

– acaputo
Nov 19 '18 at 22:19













That is strange, do it in one line, do a statment. cell.innerHTML="<td>"+data[i].userId ....+"<td>".

– Cryptopat
Nov 19 '18 at 22:22





That is strange, do it in one line, do a statment. cell.innerHTML="<td>"+data[i].userId ....+"<td>".

– Cryptopat
Nov 19 '18 at 22:22












1 Answer
1






active

oldest

votes


















3














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.






share|improve this answer


























  • 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 '18 at 22:26













Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















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

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









3














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.






share|improve this answer


























  • 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 '18 at 22:26


















3














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.






share|improve this answer


























  • 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 '18 at 22:26
















3












3








3







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.






share|improve this answer















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.







share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 19 '18 at 22:41









Derek Pollard

3,85522240




3,85522240










answered Nov 19 '18 at 22:16









JoerTJoerT

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 '18 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 '18 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 '18 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 '18 at 22:26




















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

How to fix TextFormField cause rebuild widget in Flutter