Users Pricing

forum

Home Forums How to set the value for corresponding value in jquery data table – MindStick

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

marcel ethan 3395 13 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


 


1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md