mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-27 22:56:45 -04:00
Log Grid added, using server side filtering, sorting and paging. Using DynamicQueryable.
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
}
|
||||
|
||||
<div class="grid-container">
|
||||
<table id="historyGrid" class="hidden-grid">
|
||||
<table id="historyGrid" class="dataTablesGrid hidden-grid">
|
||||
<thead>
|
||||
<tr>
|
||||
<th></th>
|
||||
@@ -33,10 +33,6 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@*@foreach(var history in Model)
|
||||
{
|
||||
Html.RenderPartial("History", history);
|
||||
}*@
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
@@ -53,7 +49,7 @@
|
||||
$(document).ready(function () {
|
||||
$('#historyGrid').removeClass('hidden-grid');
|
||||
|
||||
oTable = $('#historyGrid').dataTable({
|
||||
oTable = $('.dataTablesGrid').dataTable({
|
||||
//"sAjaxSource": "History/AjaxBinding",
|
||||
//"bProcessing": true,
|
||||
"bShowAll": false,
|
||||
|
||||
Reference in New Issue
Block a user