我有一個ExtJS RichText(已從CQ.form.rte
擴展的CQ5組件)。將額外的類添加到富文本編輯器的源值
但是也有一些使用以下支持rtePlugins,有人肯:
credit = new CQ.form.RichText({
height : 100,
width : 400,
fieldLabel : 'Photo Credit',
rtePlugins : {
misctools: {
features: ['specialchars', 'sourceedit'],
specialCharsConfig: {
chars: CN.Author.Util.specialCharacters
}
}
}
});
當我點擊源編輯,我要處理的DOM並添加class
到HTML。我的意思是,我希望RTE編輯器自動在保存前向源添加額外的類 - RTE字段的值。請幫助
我不想去ExtJS論壇。任何人? –