22 lines
753 B
JavaScript
22 lines
753 B
JavaScript
$(document).ready(function()
|
|
{
|
|
setModal4List('runCase', 'caseList', function(){$(".iframe").modalTrigger({width:1024, type:'iframe'});}, 1024);
|
|
if(browseType == 'bysearch') ajaxGetSearchForm();
|
|
setTimeout(function(){fixedTfootAction('#casesForm')}, 100);
|
|
setTimeout(function(){fixedTheadOfList('#caseList')}, 100);
|
|
if($('#caseList thead th.w-title').width() < 150) $('#caseList thead th.w-title').width(150);
|
|
});
|
|
|
|
function changeUser(account, taskID)
|
|
{
|
|
if(account == '')
|
|
{
|
|
link = createLink('testtask', 'cases', 'taskID=' + taskID + '&browseType=all');
|
|
}
|
|
else
|
|
{
|
|
link = createLink('testtask', 'cases', 'taskID=' + taskID + '&browseType=account¶m=' + account);
|
|
}
|
|
location.href = link;
|
|
}
|