mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-25 17:27:18 +00:00
Change from rebind() to ajaxRequest() for reloading the History grid, which keeps page and sort order.
This commit is contained in:
parent
80d7d38c7b
commit
706ea744b9
1 changed files with 3 additions and 2 deletions
|
@ -51,6 +51,8 @@ History
|
|||
c =>
|
||||
c.PageSize(20).Position(GridPagerPosition.Bottom).Style(GridPagerStyles.NextPrevious))
|
||||
.Render();}
|
||||
|
||||
<button onclick="reloadHistoryGrid();">Reload Grid</button>
|
||||
</div>
|
||||
}
|
||||
|
||||
|
@ -60,8 +62,7 @@ History
|
|||
|
||||
function reloadHistoryGrid() {
|
||||
var grid = $('#history').data('tGrid');
|
||||
grid.rebind();
|
||||
grid.sort("Date-desc");
|
||||
grid.ajaxRequest();
|
||||
}
|
||||
|
||||
function deleteHistoryRow(historyId) {
|
||||
|
|
Loading…
Reference in a new issue