Added the feature to use admin and custom admin views as the dashboard of the back-end of a component, requested in gh-148

This commit is contained in:
2018-03-09 05:26:44 +02:00
parent 417076243d
commit 34efe32002
49 changed files with 4086 additions and 3517 deletions

View File

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