property setting not working
property setting not working
elector
Posts: 2Questions: 2Answers: 0
in DataTables
In an asp.net mvc solution i have the following in one of the views:
@section scripts {
@Styles.Render("~/Content/themes/base/css")
@Scripts.Render("~/bundles/table")
<script type="text/javascript">
$(document).ready(function () {
var oTable = $('#userTable').dataTable({
"paging": false
});
});
</script>
}
Setting the paging to false does not work.
This discussion has been closed.