Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/706ea744b9692e8664a84f53f6f5890b9b5d7871 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Change from rebind() to ajaxRequest() for reloading the History grid, which keeps page and sort order.

pull/4/head
Mark McDowall 14 years ago
parent 80d7d38c7b
commit 706ea744b9

@ -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…
Cancel
Save