When you create a table with the rich text editor and save/publish it - any empty TDs disappear.
I've tried going to the tinyMceConfig.config file and added the #
before the td in the validElements entry, as suggested elsewhere on this
forum, but it's still not working.
In my testing I found that changing the entity_encoding to 'named' solved the problem.
I initially changed - with # for table, td, tr etc but this did not work regardless of what the entity encoding was set to. When I reverted those back to the - but left entity_encoding set as 'named' it all worked as I wanted.
TinyMCE and Tables
When you create a table with the rich text editor and save/publish it - any empty TDs disappear.
I've tried going to the tinyMceConfig.config file and added the # before the td in the validElements entry, as suggested elsewhere on this forum, but it's still not working.
I'm using Umbraco 4.6.
Is there something else I need to do?
you might also need to turn of tidy as well..
<!-- clean editor content with use of tidy --> <TidyEditorContent>false</TidyEditorContent>
in config/umbracosettings.config...
Putting # in front of td (instead of -) and changing entity_encoding from 'raw' to 'named' should fix it.
In my testing I found that changing the entity_encoding to 'named' solved the problem.
I initially changed - with # for table, td, tr etc but this did not work regardless of what the entity encoding was set to. When I reverted those back to the - but left entity_encoding set as 'named' it all worked as I wanted.
Hope this helps someone!
is working on a reply...