我在使用 inputRichText 组件时遇到了一些问题(icefaces 3)
<ice:inputRichText id="content" value="#{CchcDmFeedbackController.objFeedback.fbContent}"
required="true" requiredMessage="This is required" skin="office2003"
styleClass="editor" saveOnSubmit="true" toolbar="MyToolbar"
customConfigPath="#{resource['js:CKConfig.js']}"/>
<ice:message for="content"/>
和我的 CKConfig.js
CKEDITOR.editorConfig = function( config )
{
config.toolbar = 'MyToolbar';
config.toolbar_MyToolbar = [['Bold','Italic', 'Underline'], ['Save']];
config.contentsCss = '/css/CKStyle.css';
};
此代码返回 javascript 错误,似乎找不到我的工具栏配置,我的 js 路径是正确的(我确定)
虽然第一次使用 saveOnSubmit="true" 我提交我的表单,内容没有保存,验证器将它的内容捕获为空(显示验证消息),第二次提交表单它将通过,我认为它在保存内容之前验证(而不是保存之前和之后验证)
谁能帮我 :(