User tests: Successful: Unsuccessful:
Pull Request for Issue reported #12561 (comment) by @svenbluege .
Multiple instances of tinyMCE fail to initialise correctly.
Make sure that the default editor is tinyMCE
Edit administrator/components/com_content/models/forms/article.xml
and add after
<fieldset addfieldpath="/administrator/components/com_categories/models/fields" >
this:
<field
name="test2"
label ="Test Field"
type="editor"
width="300"
filter="safehtml"
editor="tinymce"
buttons="true"/>
<field
name="test3"
label ="Test Field"
type="editor"
width="300"
filter="safehtml"
editor="tinymce"
buttons="true"/>
Edit administrator/components/com_content/views/article/tmpl/edit.php
and add after
<fieldset class="adminform">
<?php echo $this->form->getInput('articletext'); ?>
</fieldset>
this:
<fieldset class="adminform">
<?php echo $this->form->getInput('test2'); ?>
</fieldset>
<fieldset class="adminform">
<?php echo $this->form->getInput('test3'); ?>
</fieldset>
Status | New | ⇒ | Pending |
Category | ⇒ | JavaScript External Library |
I have tested this item
Status | Pending | ⇒ | Ready to Commit |
RTC thanks.
Folks, when testing, please do not only comment on reviewable
but add your tests in the issue tracker. Thanks
Status | Ready to Commit | ⇒ | Fixed in Code Base |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2017-02-24 19:04:20 |
Closed_By | ⇒ | rdeutz | |
Labels |
Added:
?
?
|
Reviewed 2 of 2 files at r1.
Review status: all files reviewed at latest revision, all discussions resolved.
Comments from Reviewable