Hi,

I am using TinyMCE Editor of Wysiwyg in Drupal 7(Its working fine with CKeditor but I need for TinyMCE Editor).

When I edit the box in the the same page with popup(Used "Edit in place" configuration of boxes), I am not getting the Wysiwyg editor for the box body. If I open it in a different page then I am able to get the Wysywig but I need it when I open the box in the same page with pop up.

I have tried the other patches also but I am still getting this issue.

Can any one please give a solution for this issue.

Thanks in Advance!!!!

Comments

Jalandhar’s picture

Issue summary: View changes

added configuration information

Jalandhar’s picture

Issue summary: View changes

added editor information

hefox’s picture

Status: Needs work » Active

(Needs work implies there's a patch that needs work)

TechNikh’s picture

Version: 7.x-1.0 » 7.x-1.1

same issue. WYSIWYG shows up on seperate page but not on overlay. http://***/admin/structure/block/manage/boxes/##########/configure

liquidcms’s picture

doesnt work even with CK for me.

dsdeiz’s picture

I can't seem to reproduce this on my end - http://monosnap.com/image/vgLNn4wz6g8LfbEw14ypeAfjg. I'm using the WYSIWYG module though. I'm guessing whatever the issue is might be related to the module used for wysiwyg either wysiwyg.module or ckeditor.module or something else. For wysiwyg.module, probably related to #356480: Lazy-load editors.

dsdeiz’s picture

Issue summary: View changes

added more detailed info

happysnowmantech’s picture

Issue summary: View changes

I saw the same problem with CKEditor installed; it went away when I upgraded to the latest dev version of WYSIWYG as of 10 Mar 2016.

wranvaud’s picture

Had this issue and for me the problem was that the max_input_vars in PHP was exceeded and the AJAX call did not finish.
Setting this on .htaccess worked in some situations (but not all):
php_value max_input_vars 1500
Or in php.ini:
max_input_vars 1500

joseph.olstad’s picture

Status: Active » Fixed

***EDIT*** Above noted issues are fixed ***EDIT*** by the latest release of the wysiwyg module

***EDIT***
However, a conflict between using boxes edit with bootstrap /jQuery 1.10 (ish) has been discovered, so this issue is not 100% resolved.
***EDIT***

joseph.olstad’s picture

Title: Wysiwyg editor is not working for "Edit in place" configuration of boxes » in bootstrap conflict between boxes dialog and ckeditor link dialog for "Edit in place" configuration of boxes
Status: Fixed » Needs work

Preconditions:

latest 7.x-3.x bootstrap derived theme with jQuery 1.10 (ish)
ckeditor 4.6.2 (or 4.4.8 for that matter)
wysiwyg latest release or latest dev

Problem:

when using the 'link' button and popup dialog of ckeditor wysiwyg (there's another dialog button that is affected as well, however SOME are not affected, not sure why yet)

For some reason when using a bootstrap front end theme, the link dialog when you click on it, focus goes back to the boxes dialog , looks like an event on the boxes box has priority over the link dialog .

Workaround:

The workaround is to click the 'configure' button instead of the 'edit' button, I think there's a patch for adding the 'configure' button that we're using. This takes you to your admin theme instead of a boxes dialog box you've got a page with the wysiwyg , then there is no conflict between the boxes dialog box and the ckeditor link dialog box.

Patches are welcome:

I'd like to see a 100% solution to this, however the workaround gets the job done.