Merge branch '18.x' into 18.8.1
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user