Merge branch '18.x' into 18.8.1

This commit is contained in:
tanghucheng
2023-10-17 03:45:57 -04:00
504 changed files with 5640 additions and 4276 deletions
+16
View File
@@ -3,3 +3,19 @@ $(document).ready(function()
if(browseType == 'bysearch') $.toggleQueryBox(true);
if($('#caseList thead th.w-title').width() < 150) $('#caseList thead th.w-title').width(150);
});
/**
* Get checked items.
*
* @access public
* @return array
*/
function getCheckedItems()
{
var checkedItems = [];
$('#casesForm [name^=caseIDList]:checked').each(function(index, ele)
{
checkedItems.push($(ele).val());
});
return checkedItems;
};
+2
View File
@@ -36,7 +36,9 @@
<?php endif;?>
<?php if(isset($noMultipleExecutionID)):?>
<tr class='hide'>
<?php echo html::hidden('execution', $noMultipleExecutionID);?>
</tr>
<?php else:?>
<tr class='<?php echo ($app->tab == 'execution' and $executionID) ? 'hide' : '';?>'>
<th class='w-100px'><?php echo $lang->testtask->execution;?></th>