Files
EasySoft-ZenTaoPMS/module/doc/js/common.js
2011-02-25 14:48:49 +00:00

30 lines
603 B
JavaScript

/* Load the products of the roject. */
function loadProducts(project)
{
link = createLink('project', 'ajaxGetProducts', 'projectID=' + project);
$('#productBox').load(link);
}
/* Set doc type. */
function setType(type)
{
if(type == 'url')
{
$('#urlBox').show();
$('#fileBox').hide();
$('#contentBox').hide();
}
else if(type == 'text')
{
$('#urlBox').hide();
$('#fileBox').hide();
$('#contentBox').show();
}
else
{
$('#urlBox').hide();
$('#fileBox').show();
$('#contentBox').hide();
}
}