JSF h:inputTextarea 到 HTML textArea - 传递 maxlength 属性

发布于 2024-12-02 18:05:29 字数 291 浏览 1 评论 0原文

我正在使用 Richfaces,并且尝试创建一个设置了 maxlength 属性的

<h:inputTextarea maxlength="100" cols="20" rows="10" value="#{bean.description}" id="description" />

I am using Richfaces and I am trying to make an <textArea> with maxlength atrribute set but JSF seems not to pass the maxlength attribute from h:inputTextArea. Any ideas why this is happening?

<h:inputTextarea maxlength="100" cols="20" rows="10" value="#{bean.description}" id="description" />

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

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

发布评论

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

评论(3

三五鸿雁 2024-12-09 18:05:29

h:inputTextarea 上不存在 maxlength (参见文档)。

要添加验证器消息,请尝试

<h:inputTextarea >
  <f:validateLength maximum="100"></f:validateLength>
</h:inputTextarea>

maxlength doesn't exists on h:inputTextarea (see doc).

To add a validator message, try

<h:inputTextarea >
  <f:validateLength maximum="100"></f:validateLength>
</h:inputTextarea>
泡沫很甜 2024-12-09 18:05:29

我们的解决方案是在包含最大长度数字的文本区域前面放置一个额外的跨度。

<span class="maxlength">35</span>

你给这个类一个“display: none;”规则来隐藏它。然后,您使用 JavaScript 查找每个 span.maxlength 并将其中的数字移动到文本区域的 maxlength 属性中(使用 jQuery):

$('span.maxlength').each(function(){
    $this = $(this);
    $this.next('textarea').attr('maxlength',$this.html());
    $this.remove();
});

完成后,运行其他限制在文本区域中输入的 JavaScript。

哈基?是的。但是 JSF 不支持 maxlength 是很棘手的。

Our solution was to put an extra span immediately in front of the textarea that contained the maxlength number.

<span class="maxlength">35</span>

You give that class a "display: none;" rule to hide it. Then you use JavaScript to find each span.maxlength and move the number inside of it into the maxlength attribute of the textarea (using jQuery):

$('span.maxlength').each(function(){
    $this = $(this);
    $this.next('textarea').attr('maxlength',$this.html());
    $this.remove();
});

Once that's done, run your other JavaScript that limits typing in textareas.

Hacky? Yes. But JSF not supporting maxlength is hacky.

つ低調成傷 2024-12-09 18:05:29

这实际上并不是 RichFaces 问题,而是与 JSF 相关。
之前也已经回答得比较好。请参阅@BalusC 的回答
如何在 h:inputTextarea 上设置 maxlength 属性

This is not really a RichFaces issue but concerns JSF.
It's also been answered better before. see @BalusC 's answer
How to set maxlength attribute on h:inputTextarea

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文