forum

Home / DeveloperSection / Forums / How to set the value for corresponding value in jquery data table

How to set the value for corresponding value in jquery data table

marcel ethan302113-Feb-2013

Hi MindStickians!

I create the mvc format data table. But when loading the scriopt its does not match the table data and does not bind in my table row. My code is given

below.

$.ajax({
    // my passing value
    success: function (data) { // i get the data properly
        $('#Table').dataTable().fnClearTable();
        $.each(data, function (k, v) {
            var ID= v.ID;
            var name= v.name;
            var batch= v.batch;

            $('#Table').dataTable().fnAddData([
                ID,
                name,
                batch
            ]);
        });
    }
});


my table:

<table id="Table" width="100%">
    <thead>
        <tr>
            <th>EMP_ID</th>
            <th>EMP_name</th>
            <th>EMP_batch</th>
        </tr>
    </thead>
    <tbody></tbody>
</table>

Thanks in advance


 


Updated on 13-Feb-2013

Can you answer this question?


Answer

1 Answers

Liked By