从配置中设置CuteEditor EnableStripIframeTags属性

时间:2012-09-24 12:25:01

标签: cuteeditor

我一直致力于使用CuteEditor控件的现有项目。 我发现为了启用iframe标记,我需要添加属性EnableStripIframeTags并将其设置为false。但是,CuteEditor控件出现在很多页面中。

是否可以从CuteEditor的配置文件中设置EnableStripIframeTags

1 个答案:

答案 0 :(得分:0)

我认为不可能。我的解决方案是创建一个方法来设置属性并从每个页面调用它。

通常还需要更改其他几个属性,这些属性也可以添加到该方法中。

public void initialiseEditor(CuteEditor.Editor editor) {

        editor.EnableStripIframeTags = true;
        editor.EnableStripScriptTags = true;
        editor.EnableStripStyleTagsCodeInjection = true;

}