Added a global editor switch for all editors in JCB, the default is none. gh-305 Added two new fields to the admin view to target the getform method in the model.

This commit is contained in:
2018-07-06 15:46:30 +02:00
parent 25650efa47
commit a9a0952ff3
74 changed files with 3291 additions and 3101 deletions

View File

@ -125,18 +125,18 @@ $componentParams = JComponentHelper::getParams('com_componentbuilder');
<script type="text/javascript">
// #jform_add_php_view listeners for add_php_view_vvvvvza function
// #jform_add_php_view listeners for add_php_view_vvvvvzb function
jQuery('#jform_add_php_view').on('keyup',function()
{
var add_php_view_vvvvvza = jQuery("#jform_add_php_view input[type='radio']:checked").val();
vvvvvza(add_php_view_vvvvvza);
var add_php_view_vvvvvzb = jQuery("#jform_add_php_view input[type='radio']:checked").val();
vvvvvzb(add_php_view_vvvvvzb);
});
jQuery('#adminForm').on('change', '#jform_add_php_view',function (e)
{
e.preventDefault();
var add_php_view_vvvvvza = jQuery("#jform_add_php_view input[type='radio']:checked").val();
vvvvvza(add_php_view_vvvvvza);
var add_php_view_vvvvvzb = jQuery("#jform_add_php_view input[type='radio']:checked").val();
vvvvvzb(add_php_view_vvvvvzb);
});