Tinymce is stripping iframe tags. I have added the extended_valid_elements. Still the tags are stripped. Any ideas.
DCT:
<item name="paragraph">
<label>Paragraph</label>
<description>Enter the paragraph information. This field is optional. This field will accept a maximum of 2000 characters.</description>
<textarea rows="25" cols="69" required="t" external-editor-config="my_subpage" external-editor="tinymce" wrap="on" external-editor-inline="f"/>
</item>
Custom_config.js:
IWTinyMCECustomConfig("my_subpage", "toolbarRow",
"bullist,numlist,|,outdent,indent,|,justifyleft,justifycenter,justifyright,\ justifyfull,|,undo,redo,|,link,unlink,|,hr,removeformat,visualaid,|,charmap,inserttime,insertdate,image,|,code,help,pagelink");
IWTinyMCECustomConfig("my_subpage", "extended_valid_elements", "link[rel|href|type],form[action|method|name|onsubmit],style[*],video[controls|preload|width|height|data-setup],source[src|type],\
script[type|defer|src|language], div[*], img[*], center[*], iframe[*]");
I tried the following too:
IWTinyMCECustomConfig("bax_subpage", "toolbarRow",
"bullist,numlist,|,outdent,indent,|,justifyleft,justifycenter,justifyright,\ justifyfull,|,undo,redo,|,link,unlink,|,hr,removeformat,visualaid,|,charmap,inserttime,insertdate,image,|,code,help,pagelink");
IWTinyMCECustomConfig("bax_subpage", "extended_valid_elements", "link[rel|href|type],form[action|method|name|onsubmit],style[*],video[controls|preload|width|height|data-setup],source[src|type],\
script[type|defer|src|language], div[*], img[*], center[*], iframe[src|frameborder|style|scrolling|class|width|height|name|align]");
My other changes to bax_subpage are reflected on the page, but not iframe update. Is there any extra configuration required.