0
Hi There,
When I work with JCE editor, the text editor in invoice Manager conflicts with the editor and shows withing the editor as an iframe.
It also shows a text editor on every page when you make a new invoice
Please advise
When I work with JCE editor, the text editor in invoice Manager conflicts with the editor and shows withing the editor as an iframe.
It also shows a text editor on every page when you make a new invoice
Please advise
Responses (5)
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
0Yes, There seems it is a bug in JCE Editor which I fount a similar problem with other extensions
It happens where there are 2 editors loading on the same page.
The easiest workaround for it was to remove one of the editors (the "admin notes" one, for example, which is less used) and just use a normal text-area for it.
The Joomlathat supports team sorted that out for me. -
Accepted Answer
0Thank Emendy for the reply and lead! Some of my other components on the same site have multiple JCE editors on the same page (Short Description, Long Description for example) and it works just fine? I did go ahead and adjust the "administrator/components/com_invoices/views/invoice/tmpl/form_notes.php" core file to not include the editor (I actually prefer it without an editor anyways) and it fixed it. JoomlaThat, could a "Show Editor: Yes/No" be added to the IM config?
I changed the code within the form_notes.php to:
<div class="control-group">
<label class="control-label"> <?php echo JText::_( 'NOTES' ); ?>: </label>
<div class="controls">
<textarea class="span12" name="thecontent" id="thecontent" cols="100" rows="10"><?php echo $this->invoice->notes; ?></textarea>
</div>
</div>
<div class="control-group">
<label class="control-label"> <?php echo JText::_( 'ADMIN_NOTES' ); ?>: </label>
<div class="controls">
<textarea class="span12" name="thecontent" id="thecontent" cols="100" rows="10"><?php echo $this->invoice->admin_notes; ?></textarea>
</div>
</div>
Thanks again!
Your Reply

Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »