2015-12-01 05:06:34 +00:00
|
|
|
/*----------------------------------------------------------------------------------| www.giz.de |----/
|
|
|
|
Deutsche Gesellschaft für International Zusammenarbeit (GIZ) Gmb
|
|
|
|
/-------------------------------------------------------------------------------------------------------/
|
|
|
|
|
|
|
|
@version 3.0.8
|
|
|
|
@build 1st December, 2015
|
|
|
|
@created 15th June, 2012
|
|
|
|
@package Cost Benefit Projection
|
|
|
|
@subpackage help_document.js
|
|
|
|
@author Llewellyn van der Merwe <http://www.vdm.io>
|
|
|
|
@owner Deutsche Gesellschaft für International Zusammenarbeit (GIZ) Gmb
|
|
|
|
@copyright Copyright (C) 2015. All Rights Reserved
|
|
|
|
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
|
|
|
|
/-------------------------------------------------------------------------------------------------------/
|
|
|
|
Cost Benefit Projection Tool.
|
|
|
|
/------------------------------------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
// Some Global Values
|
2015-12-01 05:18:34 +00:00
|
|
|
jform_GNSempCdHk_required = false;
|
|
|
|
jform_btpFKYzVNQ_required = false;
|
|
|
|
jform_kYXZiqcCXv_required = false;
|
|
|
|
jform_fKlWJFrnET_required = false;
|
2015-12-01 05:06:34 +00:00
|
|
|
|
|
|
|
// Initial Script
|
|
|
|
jQuery(document).ready(function()
|
|
|
|
{
|
2015-12-01 05:18:34 +00:00
|
|
|
var location_qNlskgN = jQuery("#jform_location input[type='radio']:checked").val();
|
|
|
|
qNlskgN(location_qNlskgN);
|
2015-12-01 05:06:34 +00:00
|
|
|
|
2015-12-01 05:18:34 +00:00
|
|
|
var location_ksdmMsB = jQuery("#jform_location input[type='radio']:checked").val();
|
|
|
|
ksdmMsB(location_ksdmMsB);
|
2015-12-01 05:06:34 +00:00
|
|
|
|
2015-12-01 05:18:34 +00:00
|
|
|
var type_GNSempC = jQuery("#jform_type").val();
|
|
|
|
GNSempC(type_GNSempC);
|
2015-12-01 05:06:34 +00:00
|
|
|
|
2015-12-01 05:18:34 +00:00
|
|
|
var type_btpFKYz = jQuery("#jform_type").val();
|
|
|
|
btpFKYz(type_btpFKYz);
|
2015-12-01 05:06:34 +00:00
|
|
|
|
2015-12-01 05:18:34 +00:00
|
|
|
var type_kYXZiqc = jQuery("#jform_type").val();
|
|
|
|
kYXZiqc(type_kYXZiqc);
|
2015-12-01 05:06:34 +00:00
|
|
|
|
2015-12-01 05:18:34 +00:00
|
|
|
var target_fKlWJFr = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
fKlWJFr(target_fKlWJFr);
|
2015-12-01 05:06:34 +00:00
|
|
|
});
|
|
|
|
|
2015-12-01 05:18:34 +00:00
|
|
|
// the qNlskgN function
|
|
|
|
function qNlskgN(location_qNlskgN)
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
|
|
|
// [8008] set the function logic
|
2015-12-01 05:18:34 +00:00
|
|
|
if (location_qNlskgN == 1)
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
|
|
|
jQuery('#jform_admin_view').closest('.control-group').show();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_admin_view').closest('.control-group').hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-01 05:18:34 +00:00
|
|
|
// the ksdmMsB function
|
|
|
|
function ksdmMsB(location_ksdmMsB)
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
|
|
|
// [8008] set the function logic
|
2015-12-01 05:18:34 +00:00
|
|
|
if (location_ksdmMsB == 2)
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
|
|
|
jQuery('#jform_site_view').closest('.control-group').show();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_site_view').closest('.control-group').hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-01 05:18:34 +00:00
|
|
|
// the GNSempC function
|
|
|
|
function GNSempC(type_GNSempC)
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
2015-12-01 05:18:34 +00:00
|
|
|
if (isSet(type_GNSempC) && type_GNSempC.constructor !== Array)
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
2015-12-01 05:18:34 +00:00
|
|
|
var temp_GNSempC = type_GNSempC;
|
|
|
|
var type_GNSempC = [];
|
|
|
|
type_GNSempC.push(temp_GNSempC);
|
2015-12-01 05:06:34 +00:00
|
|
|
}
|
2015-12-01 05:18:34 +00:00
|
|
|
else if (!isSet(type_GNSempC))
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
2015-12-01 05:18:34 +00:00
|
|
|
var type_GNSempC = [];
|
2015-12-01 05:06:34 +00:00
|
|
|
}
|
2015-12-01 05:18:34 +00:00
|
|
|
var type = type_GNSempC.some(type_GNSempC_SomeFunc);
|
2015-12-01 05:06:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
// [7986] set this function logic
|
|
|
|
if (type)
|
|
|
|
{
|
|
|
|
jQuery('#jform_url').closest('.control-group').show();
|
2015-12-01 05:18:34 +00:00
|
|
|
if (jform_GNSempCdHk_required)
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('url',0);
|
|
|
|
jQuery('#jform_url').prop('required','required');
|
|
|
|
jQuery('#jform_url').attr('aria-required',true);
|
|
|
|
jQuery('#jform_url').addClass('required');
|
2015-12-01 05:18:34 +00:00
|
|
|
jform_GNSempCdHk_required = false;
|
2015-12-01 05:06:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_url').closest('.control-group').hide();
|
2015-12-01 05:18:34 +00:00
|
|
|
if (!jform_GNSempCdHk_required)
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('url',1);
|
|
|
|
jQuery('#jform_url').removeAttr('required');
|
|
|
|
jQuery('#jform_url').removeAttr('aria-required');
|
|
|
|
jQuery('#jform_url').removeClass('required');
|
2015-12-01 05:18:34 +00:00
|
|
|
jform_GNSempCdHk_required = true;
|
2015-12-01 05:06:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-01 05:18:34 +00:00
|
|
|
// the GNSempC Some function
|
|
|
|
function type_GNSempC_SomeFunc(type_GNSempC)
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
|
|
|
// [7973] set the function logic
|
2015-12-01 05:18:34 +00:00
|
|
|
if (type_GNSempC == 3)
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-12-01 05:18:34 +00:00
|
|
|
// the btpFKYz function
|
|
|
|
function btpFKYz(type_btpFKYz)
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
2015-12-01 05:18:34 +00:00
|
|
|
if (isSet(type_btpFKYz) && type_btpFKYz.constructor !== Array)
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
2015-12-01 05:18:34 +00:00
|
|
|
var temp_btpFKYz = type_btpFKYz;
|
|
|
|
var type_btpFKYz = [];
|
|
|
|
type_btpFKYz.push(temp_btpFKYz);
|
2015-12-01 05:06:34 +00:00
|
|
|
}
|
2015-12-01 05:18:34 +00:00
|
|
|
else if (!isSet(type_btpFKYz))
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
2015-12-01 05:18:34 +00:00
|
|
|
var type_btpFKYz = [];
|
2015-12-01 05:06:34 +00:00
|
|
|
}
|
2015-12-01 05:18:34 +00:00
|
|
|
var type = type_btpFKYz.some(type_btpFKYz_SomeFunc);
|
2015-12-01 05:06:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
// [7986] set this function logic
|
|
|
|
if (type)
|
|
|
|
{
|
|
|
|
jQuery('#jform_article').closest('.control-group').show();
|
2015-12-01 05:18:34 +00:00
|
|
|
if (jform_btpFKYzVNQ_required)
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('article',0);
|
|
|
|
jQuery('#jform_article').prop('required','required');
|
|
|
|
jQuery('#jform_article').attr('aria-required',true);
|
|
|
|
jQuery('#jform_article').addClass('required');
|
2015-12-01 05:18:34 +00:00
|
|
|
jform_btpFKYzVNQ_required = false;
|
2015-12-01 05:06:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_article').closest('.control-group').hide();
|
2015-12-01 05:18:34 +00:00
|
|
|
if (!jform_btpFKYzVNQ_required)
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('article',1);
|
|
|
|
jQuery('#jform_article').removeAttr('required');
|
|
|
|
jQuery('#jform_article').removeAttr('aria-required');
|
|
|
|
jQuery('#jform_article').removeClass('required');
|
2015-12-01 05:18:34 +00:00
|
|
|
jform_btpFKYzVNQ_required = true;
|
2015-12-01 05:06:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-01 05:18:34 +00:00
|
|
|
// the btpFKYz Some function
|
|
|
|
function type_btpFKYz_SomeFunc(type_btpFKYz)
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
|
|
|
// [7973] set the function logic
|
2015-12-01 05:18:34 +00:00
|
|
|
if (type_btpFKYz == 1)
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-12-01 05:18:34 +00:00
|
|
|
// the kYXZiqc function
|
|
|
|
function kYXZiqc(type_kYXZiqc)
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
2015-12-01 05:18:34 +00:00
|
|
|
if (isSet(type_kYXZiqc) && type_kYXZiqc.constructor !== Array)
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
2015-12-01 05:18:34 +00:00
|
|
|
var temp_kYXZiqc = type_kYXZiqc;
|
|
|
|
var type_kYXZiqc = [];
|
|
|
|
type_kYXZiqc.push(temp_kYXZiqc);
|
2015-12-01 05:06:34 +00:00
|
|
|
}
|
2015-12-01 05:18:34 +00:00
|
|
|
else if (!isSet(type_kYXZiqc))
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
2015-12-01 05:18:34 +00:00
|
|
|
var type_kYXZiqc = [];
|
2015-12-01 05:06:34 +00:00
|
|
|
}
|
2015-12-01 05:18:34 +00:00
|
|
|
var type = type_kYXZiqc.some(type_kYXZiqc_SomeFunc);
|
2015-12-01 05:06:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
// [7986] set this function logic
|
|
|
|
if (type)
|
|
|
|
{
|
|
|
|
jQuery('#jform_content-lbl').closest('.control-group').show();
|
2015-12-01 05:18:34 +00:00
|
|
|
if (jform_kYXZiqcCXv_required)
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('content',0);
|
|
|
|
jQuery('#jform_content').prop('required','required');
|
|
|
|
jQuery('#jform_content').attr('aria-required',true);
|
|
|
|
jQuery('#jform_content').addClass('required');
|
2015-12-01 05:18:34 +00:00
|
|
|
jform_kYXZiqcCXv_required = false;
|
2015-12-01 05:06:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_content-lbl').closest('.control-group').hide();
|
2015-12-01 05:18:34 +00:00
|
|
|
if (!jform_kYXZiqcCXv_required)
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('content',1);
|
|
|
|
jQuery('#jform_content').removeAttr('required');
|
|
|
|
jQuery('#jform_content').removeAttr('aria-required');
|
|
|
|
jQuery('#jform_content').removeClass('required');
|
2015-12-01 05:18:34 +00:00
|
|
|
jform_kYXZiqcCXv_required = true;
|
2015-12-01 05:06:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-01 05:18:34 +00:00
|
|
|
// the kYXZiqc Some function
|
|
|
|
function type_kYXZiqc_SomeFunc(type_kYXZiqc)
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
|
|
|
// [7973] set the function logic
|
2015-12-01 05:18:34 +00:00
|
|
|
if (type_kYXZiqc == 2)
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-12-01 05:18:34 +00:00
|
|
|
// the fKlWJFr function
|
|
|
|
function fKlWJFr(target_fKlWJFr)
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
|
|
|
// [8008] set the function logic
|
2015-12-01 05:18:34 +00:00
|
|
|
if (target_fKlWJFr == 1)
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
|
|
|
jQuery('#jform_groups').closest('.control-group').show();
|
2015-12-01 05:18:34 +00:00
|
|
|
if (jform_fKlWJFrnET_required)
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('groups',0);
|
|
|
|
jQuery('#jform_groups').prop('required','required');
|
|
|
|
jQuery('#jform_groups').attr('aria-required',true);
|
|
|
|
jQuery('#jform_groups').addClass('required');
|
2015-12-01 05:18:34 +00:00
|
|
|
jform_fKlWJFrnET_required = false;
|
2015-12-01 05:06:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_groups').closest('.control-group').hide();
|
2015-12-01 05:18:34 +00:00
|
|
|
if (!jform_fKlWJFrnET_required)
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('groups',1);
|
|
|
|
jQuery('#jform_groups').removeAttr('required');
|
|
|
|
jQuery('#jform_groups').removeAttr('aria-required');
|
|
|
|
jQuery('#jform_groups').removeClass('required');
|
2015-12-01 05:18:34 +00:00
|
|
|
jform_fKlWJFrnET_required = true;
|
2015-12-01 05:06:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// update required fields
|
|
|
|
function updateFieldRequired(name,status)
|
|
|
|
{
|
|
|
|
var not_required = jQuery('#jform_not_required').val();
|
|
|
|
|
|
|
|
if(status == 1)
|
|
|
|
{
|
|
|
|
if (isSet(not_required) && not_required != 0)
|
|
|
|
{
|
|
|
|
not_required = not_required+','+name;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
not_required = ','+name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (isSet(not_required) && not_required != 0)
|
|
|
|
{
|
|
|
|
not_required = not_required.replace(','+name,'');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
jQuery('#jform_not_required').val(not_required);
|
|
|
|
}
|
|
|
|
|
|
|
|
// the isSet function
|
|
|
|
function isSet(val)
|
|
|
|
{
|
|
|
|
if ((val != undefined) && (val != null) && 0 !== val.length){
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|