* testcase: add function to filter the scene id list when export.
This commit is contained in:
@@ -1,3 +1,12 @@
|
||||
window.setCheckedCookie = function() {
|
||||
var checkeds = [];
|
||||
var $checkboxes = $('#mainContent .main-table tbody>tr input[type="checkbox"][name^=caseIDList]:checked');
|
||||
$checkboxes.each(function() {
|
||||
checkeds.push($(this).val());
|
||||
});
|
||||
$.cookie('checkedItem', checkeds.join(','), {expires: config.cookieLife, path: config.webRoot});
|
||||
};
|
||||
|
||||
/**
|
||||
* Confirm batch delete cases.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user