Added an after cancel custom code area also in connection with gh-418 in the admin view.
This commit is contained in:
@ -9,24 +9,21 @@
|
||||
*/
|
||||
|
||||
// Some Global Values
|
||||
jform_vvvvwbywbb_required = false;
|
||||
jform_vvvvwbzwbc_required = false;
|
||||
jform_vvvvwcawbd_required = false;
|
||||
jform_vvvvwcbwbe_required = false;
|
||||
jform_vvvvwccwbf_required = false;
|
||||
jform_vvvvwcdwbg_required = false;
|
||||
jform_vvvvwcewbh_required = false;
|
||||
|
||||
// Initial Script
|
||||
jQuery(document).ready(function()
|
||||
{
|
||||
var location_vvvvwby = jQuery("#jform_location input[type='radio']:checked").val();
|
||||
vvvvwby(location_vvvvwby);
|
||||
|
||||
var location_vvvvwbz = jQuery("#jform_location input[type='radio']:checked").val();
|
||||
vvvvwbz(location_vvvvwbz);
|
||||
|
||||
var type_vvvvwca = jQuery("#jform_type").val();
|
||||
vvvvwca(type_vvvvwca);
|
||||
var location_vvvvwca = jQuery("#jform_location input[type='radio']:checked").val();
|
||||
vvvvwca(location_vvvvwca);
|
||||
|
||||
var type_vvvvwcb = jQuery("#jform_type").val();
|
||||
vvvvwcb(type_vvvvwcb);
|
||||
@ -34,130 +31,77 @@ jQuery(document).ready(function()
|
||||
var type_vvvvwcc = jQuery("#jform_type").val();
|
||||
vvvvwcc(type_vvvvwcc);
|
||||
|
||||
var target_vvvvwcd = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcd(target_vvvvwcd);
|
||||
var type_vvvvwcd = jQuery("#jform_type").val();
|
||||
vvvvwcd(type_vvvvwcd);
|
||||
|
||||
var target_vvvvwce = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwce(target_vvvvwce);
|
||||
});
|
||||
|
||||
// the vvvvwby function
|
||||
function vvvvwby(location_vvvvwby)
|
||||
// the vvvvwbz function
|
||||
function vvvvwbz(location_vvvvwbz)
|
||||
{
|
||||
// set the function logic
|
||||
if (location_vvvvwby == 1)
|
||||
if (location_vvvvwbz == 1)
|
||||
{
|
||||
jQuery('#jform_admin_view').closest('.control-group').show();
|
||||
// add required attribute to admin_view field
|
||||
if (jform_vvvvwbywbb_required)
|
||||
if (jform_vvvvwbzwbc_required)
|
||||
{
|
||||
updateFieldRequired('admin_view',0);
|
||||
jQuery('#jform_admin_view').prop('required','required');
|
||||
jQuery('#jform_admin_view').attr('aria-required',true);
|
||||
jQuery('#jform_admin_view').addClass('required');
|
||||
jform_vvvvwbywbb_required = false;
|
||||
jform_vvvvwbzwbc_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_admin_view').closest('.control-group').hide();
|
||||
// remove required attribute from admin_view field
|
||||
if (!jform_vvvvwbywbb_required)
|
||||
if (!jform_vvvvwbzwbc_required)
|
||||
{
|
||||
updateFieldRequired('admin_view',1);
|
||||
jQuery('#jform_admin_view').removeAttr('required');
|
||||
jQuery('#jform_admin_view').removeAttr('aria-required');
|
||||
jQuery('#jform_admin_view').removeClass('required');
|
||||
jform_vvvvwbywbb_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwbz function
|
||||
function vvvvwbz(location_vvvvwbz)
|
||||
{
|
||||
// set the function logic
|
||||
if (location_vvvvwbz == 2)
|
||||
{
|
||||
jQuery('#jform_site_view').closest('.control-group').show();
|
||||
// add required attribute to site_view field
|
||||
if (jform_vvvvwbzwbc_required)
|
||||
{
|
||||
updateFieldRequired('site_view',0);
|
||||
jQuery('#jform_site_view').prop('required','required');
|
||||
jQuery('#jform_site_view').attr('aria-required',true);
|
||||
jQuery('#jform_site_view').addClass('required');
|
||||
jform_vvvvwbzwbc_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_site_view').closest('.control-group').hide();
|
||||
// remove required attribute from site_view field
|
||||
if (!jform_vvvvwbzwbc_required)
|
||||
{
|
||||
updateFieldRequired('site_view',1);
|
||||
jQuery('#jform_site_view').removeAttr('required');
|
||||
jQuery('#jform_site_view').removeAttr('aria-required');
|
||||
jQuery('#jform_site_view').removeClass('required');
|
||||
jform_vvvvwbzwbc_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwca function
|
||||
function vvvvwca(type_vvvvwca)
|
||||
function vvvvwca(location_vvvvwca)
|
||||
{
|
||||
if (isSet(type_vvvvwca) && type_vvvvwca.constructor !== Array)
|
||||
// set the function logic
|
||||
if (location_vvvvwca == 2)
|
||||
{
|
||||
var temp_vvvvwca = type_vvvvwca;
|
||||
var type_vvvvwca = [];
|
||||
type_vvvvwca.push(temp_vvvvwca);
|
||||
}
|
||||
else if (!isSet(type_vvvvwca))
|
||||
{
|
||||
var type_vvvvwca = [];
|
||||
}
|
||||
var type = type_vvvvwca.some(type_vvvvwca_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (type)
|
||||
{
|
||||
jQuery('#jform_url').closest('.control-group').show();
|
||||
// add required attribute to url field
|
||||
jQuery('#jform_site_view').closest('.control-group').show();
|
||||
// add required attribute to site_view field
|
||||
if (jform_vvvvwcawbd_required)
|
||||
{
|
||||
updateFieldRequired('url',0);
|
||||
jQuery('#jform_url').prop('required','required');
|
||||
jQuery('#jform_url').attr('aria-required',true);
|
||||
jQuery('#jform_url').addClass('required');
|
||||
updateFieldRequired('site_view',0);
|
||||
jQuery('#jform_site_view').prop('required','required');
|
||||
jQuery('#jform_site_view').attr('aria-required',true);
|
||||
jQuery('#jform_site_view').addClass('required');
|
||||
jform_vvvvwcawbd_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_url').closest('.control-group').hide();
|
||||
// remove required attribute from url field
|
||||
jQuery('#jform_site_view').closest('.control-group').hide();
|
||||
// remove required attribute from site_view field
|
||||
if (!jform_vvvvwcawbd_required)
|
||||
{
|
||||
updateFieldRequired('url',1);
|
||||
jQuery('#jform_url').removeAttr('required');
|
||||
jQuery('#jform_url').removeAttr('aria-required');
|
||||
jQuery('#jform_url').removeClass('required');
|
||||
updateFieldRequired('site_view',1);
|
||||
jQuery('#jform_site_view').removeAttr('required');
|
||||
jQuery('#jform_site_view').removeAttr('aria-required');
|
||||
jQuery('#jform_site_view').removeClass('required');
|
||||
jform_vvvvwcawbd_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwca Some function
|
||||
function type_vvvvwca_SomeFunc(type_vvvvwca)
|
||||
{
|
||||
// set the function logic
|
||||
if (type_vvvvwca == 3)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcb function
|
||||
function vvvvwcb(type_vvvvwcb)
|
||||
{
|
||||
@ -177,27 +121,27 @@ function vvvvwcb(type_vvvvwcb)
|
||||
// set this function logic
|
||||
if (type)
|
||||
{
|
||||
jQuery('#jform_article').closest('.control-group').show();
|
||||
// add required attribute to article field
|
||||
jQuery('#jform_url').closest('.control-group').show();
|
||||
// add required attribute to url field
|
||||
if (jform_vvvvwcbwbe_required)
|
||||
{
|
||||
updateFieldRequired('article',0);
|
||||
jQuery('#jform_article').prop('required','required');
|
||||
jQuery('#jform_article').attr('aria-required',true);
|
||||
jQuery('#jform_article').addClass('required');
|
||||
updateFieldRequired('url',0);
|
||||
jQuery('#jform_url').prop('required','required');
|
||||
jQuery('#jform_url').attr('aria-required',true);
|
||||
jQuery('#jform_url').addClass('required');
|
||||
jform_vvvvwcbwbe_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_article').closest('.control-group').hide();
|
||||
// remove required attribute from article field
|
||||
jQuery('#jform_url').closest('.control-group').hide();
|
||||
// remove required attribute from url field
|
||||
if (!jform_vvvvwcbwbe_required)
|
||||
{
|
||||
updateFieldRequired('article',1);
|
||||
jQuery('#jform_article').removeAttr('required');
|
||||
jQuery('#jform_article').removeAttr('aria-required');
|
||||
jQuery('#jform_article').removeClass('required');
|
||||
updateFieldRequired('url',1);
|
||||
jQuery('#jform_url').removeAttr('required');
|
||||
jQuery('#jform_url').removeAttr('aria-required');
|
||||
jQuery('#jform_url').removeClass('required');
|
||||
jform_vvvvwcbwbe_required = true;
|
||||
}
|
||||
}
|
||||
@ -207,7 +151,7 @@ function vvvvwcb(type_vvvvwcb)
|
||||
function type_vvvvwcb_SomeFunc(type_vvvvwcb)
|
||||
{
|
||||
// set the function logic
|
||||
if (type_vvvvwcb == 1)
|
||||
if (type_vvvvwcb == 3)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
@ -233,27 +177,27 @@ function vvvvwcc(type_vvvvwcc)
|
||||
// set this function logic
|
||||
if (type)
|
||||
{
|
||||
jQuery('#jform_content-lbl').closest('.control-group').show();
|
||||
// add required attribute to content field
|
||||
jQuery('#jform_article').closest('.control-group').show();
|
||||
// add required attribute to article field
|
||||
if (jform_vvvvwccwbf_required)
|
||||
{
|
||||
updateFieldRequired('content',0);
|
||||
jQuery('#jform_content').prop('required','required');
|
||||
jQuery('#jform_content').attr('aria-required',true);
|
||||
jQuery('#jform_content').addClass('required');
|
||||
updateFieldRequired('article',0);
|
||||
jQuery('#jform_article').prop('required','required');
|
||||
jQuery('#jform_article').attr('aria-required',true);
|
||||
jQuery('#jform_article').addClass('required');
|
||||
jform_vvvvwccwbf_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_content-lbl').closest('.control-group').hide();
|
||||
// remove required attribute from content field
|
||||
jQuery('#jform_article').closest('.control-group').hide();
|
||||
// remove required attribute from article field
|
||||
if (!jform_vvvvwccwbf_required)
|
||||
{
|
||||
updateFieldRequired('content',1);
|
||||
jQuery('#jform_content').removeAttr('required');
|
||||
jQuery('#jform_content').removeAttr('aria-required');
|
||||
jQuery('#jform_content').removeClass('required');
|
||||
updateFieldRequired('article',1);
|
||||
jQuery('#jform_article').removeAttr('required');
|
||||
jQuery('#jform_article').removeAttr('aria-required');
|
||||
jQuery('#jform_article').removeClass('required');
|
||||
jform_vvvvwccwbf_required = true;
|
||||
}
|
||||
}
|
||||
@ -263,7 +207,7 @@ function vvvvwcc(type_vvvvwcc)
|
||||
function type_vvvvwcc_SomeFunc(type_vvvvwcc)
|
||||
{
|
||||
// set the function logic
|
||||
if (type_vvvvwcc == 2)
|
||||
if (type_vvvvwcc == 1)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
@ -271,33 +215,89 @@ function type_vvvvwcc_SomeFunc(type_vvvvwcc)
|
||||
}
|
||||
|
||||
// the vvvvwcd function
|
||||
function vvvvwcd(target_vvvvwcd)
|
||||
function vvvvwcd(type_vvvvwcd)
|
||||
{
|
||||
if (isSet(type_vvvvwcd) && type_vvvvwcd.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcd = type_vvvvwcd;
|
||||
var type_vvvvwcd = [];
|
||||
type_vvvvwcd.push(temp_vvvvwcd);
|
||||
}
|
||||
else if (!isSet(type_vvvvwcd))
|
||||
{
|
||||
var type_vvvvwcd = [];
|
||||
}
|
||||
var type = type_vvvvwcd.some(type_vvvvwcd_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (type)
|
||||
{
|
||||
jQuery('#jform_content-lbl').closest('.control-group').show();
|
||||
// add required attribute to content field
|
||||
if (jform_vvvvwcdwbg_required)
|
||||
{
|
||||
updateFieldRequired('content',0);
|
||||
jQuery('#jform_content').prop('required','required');
|
||||
jQuery('#jform_content').attr('aria-required',true);
|
||||
jQuery('#jform_content').addClass('required');
|
||||
jform_vvvvwcdwbg_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_content-lbl').closest('.control-group').hide();
|
||||
// remove required attribute from content field
|
||||
if (!jform_vvvvwcdwbg_required)
|
||||
{
|
||||
updateFieldRequired('content',1);
|
||||
jQuery('#jform_content').removeAttr('required');
|
||||
jQuery('#jform_content').removeAttr('aria-required');
|
||||
jQuery('#jform_content').removeClass('required');
|
||||
jform_vvvvwcdwbg_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwcd Some function
|
||||
function type_vvvvwcd_SomeFunc(type_vvvvwcd)
|
||||
{
|
||||
// set the function logic
|
||||
if (target_vvvvwcd == 1)
|
||||
if (type_vvvvwcd == 2)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwce function
|
||||
function vvvvwce(target_vvvvwce)
|
||||
{
|
||||
// set the function logic
|
||||
if (target_vvvvwce == 1)
|
||||
{
|
||||
jQuery('#jform_groups').closest('.control-group').show();
|
||||
// add required attribute to groups field
|
||||
if (jform_vvvvwcdwbg_required)
|
||||
if (jform_vvvvwcewbh_required)
|
||||
{
|
||||
updateFieldRequired('groups',0);
|
||||
jQuery('#jform_groups').prop('required','required');
|
||||
jQuery('#jform_groups').attr('aria-required',true);
|
||||
jQuery('#jform_groups').addClass('required');
|
||||
jform_vvvvwcdwbg_required = false;
|
||||
jform_vvvvwcewbh_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_groups').closest('.control-group').hide();
|
||||
// remove required attribute from groups field
|
||||
if (!jform_vvvvwcdwbg_required)
|
||||
if (!jform_vvvvwcewbh_required)
|
||||
{
|
||||
updateFieldRequired('groups',1);
|
||||
jQuery('#jform_groups').removeAttr('required');
|
||||
jQuery('#jform_groups').removeAttr('aria-required');
|
||||
jQuery('#jform_groups').removeClass('required');
|
||||
jform_vvvvwcdwbg_required = true;
|
||||
jform_vvvvwcewbh_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user