Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So, really trivial problem but it is late and I cannot think of a solution right now.

I have an ajax call that returns some data, I can update an existing row in a table successfully but when it comes to adding a new row; no such luck.

If the table does not have a specific class, I add a new row with the appropriate data, like so:

$('#classif-table tr:last').after("<tr><td class='classif'>" + data['name'] + "</td><td class=\"" + data['name'] + "_votes\">" + data['votes'] + "</td></tr>");

A trivial and messy example but it does work, viewing the source of the page shows the added row in the table but the change is not reflected in the page (unless the page is refreshed). Is there anyway I can force the page to recognise the new row and render it?

UPDATE: This is my AJAX call in its entirety:

$.ajax({
    type : 'POST',
    url : 'includes/edit_set.php',
    dataType : 'json',
    data : {
      id : $current_id,
      contents: contents
    },
    success : function(data){
      var species = "." + data['name'] + "_votes";
      var update = data['name'] + ": " + data['votes'];
      drawToast(update);
      if($(species)) {
        console.log('Updating table');
        $(species).text(data['votes']);
      } else {
        console.log('adding table row');
        $('#classif-table tr:last').before("<tr><td class='classif'>" + data['name'] + "</td><td class=\"" + data['name'] + "_votes\">" + data['votes'] + "</td></tr>");
      }
    },
    error : function(XMLHttpRequest, textStatus, errorThrown){
      console.log(XMLHttpRequest);
      console.log(textStatus);
    }
  });

Before the request, one might see something like this in the source:

<table id='classif-table'></table> 

After the request, the source updates and shows this:

 <table id='classif-table'><tr><td class='classif'>Human</td><td class="Human_votes">1</td></tr></table> 

But the table still shows as empty on the page. I hope that makes more sense, it just seems like the table does not add new rows; editing existing rows is fine.

share|improve this question
Post more code. Above is all right. – Velja Radenkovic Feb 16 at 0:58

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.