IceFaces:提交时保存的 inputRichText 在 IE 中不起作用?

发布于 2024-10-06 09:00:23 字数 433 浏览 0 评论 0原文

我在 IE 中遇到了ice:inputRichText组件和saveOnsubmit问题。当提交包含输入的表单时,我只得到原始文本,而不得到用户所做的任何更改。

这是我用于显示输入组件的代码:

<ice:inputRichText height="250" toolbar="Transfer" customConfigPath="/FCKconfig.js" id="messageBody" value="#{InvitationPageBean.messageBody}" language="sv" saveOnSubmit="true" />

我正在使用 IceFaces 1.8.2。

在其他浏览器中,例如 Firefox 3.6 和 Safari 5,一切都按预期工作。

有什么想法吗?

谢谢!

I'm having problems with an ice:inputRichText component and saveOnsubmit in IE. When the form containing the input is submitted, I only get the original text and not any of the changes the user has made.

This is the code I use for displaying the input component:

<ice:inputRichText height="250" toolbar="Transfer" customConfigPath="/FCKconfig.js" id="messageBody" value="#{InvitationPageBean.messageBody}" language="sv" saveOnSubmit="true" />

I'm using IceFaces 1.8.2.

In other browsers, for example Firefox 3.6 and Safari 5, it all works as expected.

Any ideas?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

许久 2024-10-13 09:00:23

保存,应该在 .java 中进行
在 xhtml 中是:

<ice:inputRichText 
    customConfigPath="/js/Config.js"
    toolbar="Mail"
    height="275"
    width="600px"
    value="#inputRichTextBean.value}"
    skin="silver"
    language="#inputRichTextBean.lang}"
    valueChangeListener="#{inputRichTextBean.changeSave}"
/>

the save, should do it in a .java
and in the xhtml is:

<ice:inputRichText 
    customConfigPath="/js/Config.js"
    toolbar="Mail"
    height="275"
    width="600px"
    value="#inputRichTextBean.value}"
    skin="silver"
    language="#inputRichTextBean.lang}"
    valueChangeListener="#{inputRichTextBean.changeSave}"
/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文