I am typing in the search box in an attempt to narrow my results. When I am typing the screen flashes like it is trying to narrow the results but the results do not change.
<script>
$(document).ready(function () {
var table = $('#activeProjects').dataTable({
"processing": true,
"serverSide": true,
"ajax": {
"url": "../api/Project/GetAll/",
"dataSrc": ""
},
"columns": [
{ "data": "ProjectName" },
{ "data": "ProjectNumber" },
{ "data": "ProjectManager" },
{ "data": "ProjectArchitect" }
]
});
});
</script>
I get back a List of data from the server but I an unable to search?