dataTable doesn't work

dataTable doesn't work

danismerimdanismerim Posts: 1Questions: 1Answers: 0

I'm using this code:

$(document).ready(function () { $('#reuniao').DataTable({ "ordering": true, "searching": true, "paging": true, "processing": true, }); });

the filters show up, but doesn't work. What can be?
I'm using a table from HTML with id = reuniao.
Code from table:

@foreach (var item in Model) { }
Reunião Documento Data
@Html.DisplayFor(modelItem => item.categoria) @item.descricao @Html.DisplayFor(modelItem => item.data_upload)

Answers

  • allanallan Posts: 61,864Questions: 1Answers: 10,136 Site admin

    Thanks for your question - however, per the forum rules can you link to a test case showing the issue please. This will allow the issue to be debugged.

    Information on how to create a test page, if you can't provide a link to your own page can be found here.

    Thanks,
    Allan

This discussion has been closed.