WebUI: Implement start torrents by category

This commit is contained in:
buinsky
2016-01-22 08:43:07 +03:00
parent 24584503d9
commit f7833c9f0c
4 changed files with 31 additions and 0 deletions

View File

@@ -683,6 +683,17 @@ var TorrentsTable = new Class({
return cnt;
},
getFilteredTorrentsHashes : function (filterName, categoryHash) {
var rowsHashes = [];
var rows = this.rows.getValues();
for (i = 0; i < rows.length; i++)
if (this.applyFilter(rows[i], filterName, categoryHash))
rowsHashes.push(rows[i]['rowId']);
return rowsHashes;
},
getFilteredAndSortedRows : function () {
var filteredRows = new Array();