* Fix issue #714.
This commit is contained in:
@@ -1377,6 +1377,7 @@ class testtask extends control
|
||||
$this->view->title = $this->lang->testtask->batchRun;
|
||||
$this->view->position[] = $this->lang->testtask->common;
|
||||
$this->view->position[] = $this->lang->testtask->batchRun;
|
||||
$this->view->from = $from;
|
||||
$this->display();
|
||||
}
|
||||
|
||||
|
||||
@@ -1,3 +1,11 @@
|
||||
$(function(){
|
||||
if(from == 'testcase')
|
||||
{
|
||||
$("#navbar li[data-id='testtask']").toggleClass('active');
|
||||
$("#navbar li[data-id='testcase']").toggleClass('active');
|
||||
}
|
||||
});
|
||||
|
||||
$(document).on('keyup', 'form input:text', function()
|
||||
{
|
||||
var preSelect = $(this).parent().prev().find('select');
|
||||
|
||||
@@ -11,10 +11,11 @@
|
||||
*/
|
||||
?>
|
||||
<?php include '../../common/view/header.html.php';?>
|
||||
<?php js::set('from', $from);?>
|
||||
<?php $this->app->loadLang('testcase'); unset($this->lang->testcase->resultList['n/a']); ?>
|
||||
<div id='mainContent' class='main-content'>
|
||||
<div class='main-header'>
|
||||
<h2><?php echo $lang->testtask->common . $lang->colon . $lang->testtask->batchRun;?></h2>
|
||||
<h2><?php echo ($from == 'testtask' ? ($lang->testtask->common . $lang->colon) : ''). $lang->testtask->batchRun;?></h2>
|
||||
</div>
|
||||
<form class='main-form' method='post' target='hiddenwin'>
|
||||
<table class='table table-fixed table-form table-bordered'>
|
||||
|
||||
Reference in New Issue
Block a user