8.4.2 Error: Permission denied to access property "nodeType"
Permalink
I notice I always get a jquery error if I have a text editor and a number inputs on the same page and click on any part of the number input or change its value:
Error: Permission denied to access property "nodeType"
Looks like there's a conflict between the two. Has anyone else noticed that?
Try this:
Error: Permission denied to access property "nodeType"
Looks like there's a conflict between the two. Has anyone else noticed that?
Try this:
<?php defined('C5_EXECUTE') or die("Access Denied."); $editor = $app->make('editor'); ?> <div class="form-group"> <?php echo $form->label('some_text', t('Text')); echo $editor->outputBlockEditModeEditor('some_text', ''); ?> </div> <div class="form-group"> <?php echo $form->label('some_number', t('Number')); echo $form->number('some_number', $some_number ? $some_number : 0); ?>
Viewing 15 lines of 16 lines. View entire code block.