MyBB Community Forums

Full Version: SCEditor table broken and converts to text on new lines
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Oddly, whenever I create a table in SCEditor, you can see it perfectly fine in the editor, but when I go to save it, it converts it in to normal text without the table, but on new lines.

A table like this: Hello |  How are you? | Goodbye

Comes out like: Hello
How are you?
Goodbye

I've tried poking around but I don't understand why it's doing this. I don't recall ever having this problem.

Thanks for any help
Any ideas from anyone? Alternatively how can I completely reinstall the text editor to make it work?

I did go on the SCEditor website and there does appear to be a working table button on that editor.

Thanks!
Final bump but seriously... literally nobody knows how to fix this? Nobody else has ever needed or used tables???
if you are constructing tables in WYSIWYG mode those tables won't be saved since a html code has to be parsed into mycode [table][tr][td] (and their respective closing tags). You'll need to create mycode for each table component (table, table row and table cell tags) - http://community.mybb.com/thread-72511-p...#pid531168.
(2016-07-23, 10:22 AM)Johnny S Wrote: [ -> ]if you are constructing tables in WYSIWYG mode those tables won't be saved since a html code has to be parsed into mycode [table][tr][td] (and their respective closing tags). You'll need to create mycode for each table component (table, table row and table cell tags) - http://community.mybb.com/thread-72511-p...#pid531168.

Thanks for your reply! I added those MyCodes in, the structure did work, however SCEditor's table button still isn't outputting a table. Even making a table then switching to source will clear any sign of a table and will push the content to plain text. Maybe a bug in the editor or something?