Files
EasySoft-ZenTaoPMS/module/testtask/js/results.js
T
2022-10-31 13:21:00 +08:00

39 lines
1.2 KiB
JavaScript

$(function()
{
$('.result-item').click(function()
{
var $this = $(this);
$this.toggleClass('show-detail');
var show = $this.hasClass('show-detail');
$this.next('.result-detail').toggleClass('hide', !show);
$this.find('.collapse-handle').toggleClass('icon-angle-down', !show).toggleClass('icon-angle-top', show);;
});
$(".step-group input[type='checkbox']").click(function()
{
var $next = $(this).closest('tr').next();
while($next.length && $next.hasClass('step-item'))
{
var isChecked = $(this).prop('checked');
$next.find("input[type='checkbox']").prop('checked', isChecked);
$next = $next.next();
}
});
$('#casesResults table caption .result-tip').html($('#resultTip').html());
$('tr:first').click();
$('#casesResults').click(function(event)
{
if(event.target.id.indexOf('checkAll') !== -1)
{
var checkAll = document.getElementById(event.target.id);
var checkAll = $(checkAll);
var isChecked = checkAll.prop('checked');
checkAll.closest('tbody').children('tr').find('input[type=checkbox]').prop('checked', isChecked);
}
});
});