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
I have seen documentation about adding a class list to tables in tiny mce, but having trouble adapting this to umbraco 10.
This is the code I have but is not working, any help would be much appreciated:
"Umbraco": { "CMS": { "Global": { "Id": "ac9f60ee-4abe-4e0c-ba7d-4b65e7ffbf22", "SanitizeTinyMce": true },
"Content": { "AllowEditInvariantFromNonDefault": true, "ContentVersionCleanupPolicy": { "EnableCleanup": true } }, "RichTextEditor": { "CustomConfig": { "table_class_list": [ { "title": "None", "value": "" }, { "title": "Editable Table", "value": "editablecontent" }, { "title": "Other Class", "value": "other_table_class" } ] } } },
Managed to fix this by converting the object to a string:
"Content": { "AllowEditInvariantFromNonDefault": true, "ContentVersionCleanupPolicy": { "EnableCleanup": true } }, "RichTextEditor": { "CustomConfig": { "table_class_list": "[{\"title\":\"None\",\"value\":\"\"},{\"title\":\"Editable Table\",\"value\":\"editablecontent\"},{\"title\":\"Other Class\",\"value\":\"other_table_class\"}]" } } },
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Adding a class list to Tiny MCE Tables
I have seen documentation about adding a class list to tables in tiny mce, but having trouble adapting this to umbraco 10.
This is the code I have but is not working, any help would be much appreciated:
"Umbraco": { "CMS": { "Global": { "Id": "ac9f60ee-4abe-4e0c-ba7d-4b65e7ffbf22", "SanitizeTinyMce": true },
Managed to fix this by converting the object to a string:
"Umbraco": { "CMS": { "Global": { "Id": "ac9f60ee-4abe-4e0c-ba7d-4b65e7ffbf22", "SanitizeTinyMce": true },
is working on a reply...