Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi,
I'm using Umbraco 7.1.4 & Data Grid v1.1.1. I have a few issues in Firefox 30 (works sort of ok but not consistently in Chrome 35).
1. I can't add macros with the RTE, the menu doesn't drop down despite the fact that the options are there. Print screen:
2. I can't edit the source code.
I have the same problem with editting source.
There are couple of rows with richtext editors.
When I click on Open Editor
and the click the Edit Source button
the text area with tha source is readonly
But there is a workaround:
If you click the Insert macro button first
and then cancel the umbraco form, on re-entering on source editor the text area is editable.
It's annoying. I think there is a focus or z-index issue.
Gabriel Tudose
I too have come across this bug and did a bit of investigation - I also thought it was a z-index issue at first, but it seems to be firing a focus event fine when clicked.
After looking through and debugging the data grid module's code, I couldn't really find where it was going wrong - so thought it may be an tinymce issue - so I ended up finding this in SO http://stackoverflow.com/questions/18111582/tinymce-4-links-plugin-modal-in-not-editable. I've tried Hary's answer and it fixed the issue.
Hi Andrew,
I am having the same issue. Can you explain what code to add in what file?
When I go to the link you provided, I got the following code
$.widget("ui.dialog", $.ui.dialog, { allowInteraction: function(event) { return !!$(event.target).closest(".mce-container").length || this.super( event ); } });
I have no idea where to add this code to? Please kindly advise. Thanks.
Zar,
I added this to the very bottom of "u7dtg.editor.html":
<script type="text/javascript"> $(document).on('focusin', function (e) { e.stopImmediatePropagation(); });</script>
Not the best solution but it works for me.
Sorry for the really long delay, completely forgot to answer.
Magnus' solution should work.
Here's a diff to show what I've done.
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Rich Text issues (Firefox)
Hi,
I'm using Umbraco 7.1.4 & Data Grid v1.1.1. I have a few issues in Firefox 30 (works sort of ok but not consistently in Chrome 35).
1. I can't add macros with the RTE, the menu doesn't drop down despite the fact that the options are there. Print screen:
2. I can't edit the source code.
Hi,
I have the same problem with editting source.
There are couple of rows with richtext editors.
When I click on Open Editor
and the click the Edit Source button
the text area with tha source is readonly
But there is a workaround:
If you click the Insert macro button first
and then cancel the umbraco form, on re-entering on source editor the text area is editable.
It's annoying. I think there is a focus or z-index issue.
Gabriel Tudose
Hi,
I too have come across this bug and did a bit of investigation - I also thought it was a z-index issue at first, but it seems to be firing a focus event fine when clicked.
After looking through and debugging the data grid module's code, I couldn't really find where it was going wrong - so thought it may be an tinymce issue - so I ended up finding this in SO http://stackoverflow.com/questions/18111582/tinymce-4-links-plugin-modal-in-not-editable. I've tried Hary's answer and it fixed the issue.
Hi Andrew,
I am having the same issue. Can you explain what code to add in what file?
When I go to the link you provided, I got the following code
$.widget("ui.dialog", $.ui.dialog, { allowInteraction: function(event) { return !!$(event.target).closest(".mce-container").length || this.super( event ); } });
I have no idea where to add this code to? Please kindly advise. Thanks.
Zar,
I added this to the very bottom of "u7dtg.editor.html":
<script type="text/javascript">
$(document).on('focusin', function (e) {
e.stopImmediatePropagation();
});
</script>
Not the best solution but it works for me.
Hi,
Sorry for the really long delay, completely forgot to answer.
Magnus' solution should work.
Here's a diff to show what I've done.
is working on a reply...