Files
EasySoft-ZenTaoPMS/module/todo/js/common.js
T
2014-07-29 07:48:55 +00:00

89 lines
2.0 KiB
JavaScript

function switchDateTodo(switcher)
{
if(switcher.checked)
{
$('#date').attr('disabled','disabled');
}
else
{
$('#date').removeAttr('disabled');
}
}
function loadList(type, id)
{
if(id)
{
divClass = '.nameBox' + id;
divID = '#nameBox' + id;
}
else
{
divClass = '.nameBox';
divID = '#nameBox';
}
var param = 'account=' + account;
if(id) param += '&id=' + id;
if(type == 'bug')
{
link = createLink('bug', 'ajaxGetUserBugs', param);
}
else if(type == 'task')
{
link = createLink('task', 'ajaxGetUserTasks', param);
}
if(type == 'bug' || type == 'task')
{
$(divClass).load(link, function(){$(divClass).find('select').chosen(defaultChosenOptions)});
}
else if(type == 'custom')
{
$(divClass).html($(divID).html());
}
}
function selectNext()
{
$("#end ")[0].selectedIndex = $("#begin ")[0].selectedIndex + 3;
}
function setBeginsAndEnds(i, beginOrEnd)
{
if(typeof i == 'undefined')
{
for(j = 0; j < batchCreateNum; j++)
{
if(j != 0) $("#begins" + j)[0].selectedIndex = $("#ends" + (j - 1))[0].selectedIndex;
$("#ends" + j)[0].selectedIndex = $("#begins" + j)[0].selectedIndex + 3;
}
}
else
{
if(beginOrEnd == 'begin')
{
$("#ends" + i)[0].selectedIndex = $("#begins" + i)[0].selectedIndex + 3;
}
for(j = i+1; j < batchCreateNum; j++)
{
$("#begins" + j)[0].selectedIndex = $("#ends" + (j - 1))[0].selectedIndex;
$("#ends" + j)[0].selectedIndex = $("#begins" + j)[0].selectedIndex + 3;
}
}
}
function switchDateFeature(switcher)
{
if(switcher.checked)
{
$('#begin').attr('disabled','disabled');
$('#end').attr('disabled','disabled');
}
else
{
$('#begin').removeAttr('disabled');
$('#end').removeAttr('disabled');
}
}