Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 extjs Ext.form.field.TextArea (xtype: textareafield, textarea)。我想将一行中的最大字符数限制为 50。 我正在使用它来动态地将选项添加到单选组,即每一行都将作为单独的选项添加到单选组。
如何限制 textarea 的一行中的字符?我在 jQuery 和纯 HTML 中找到了一些答案,但我正在寻找一种 extjs 方式。
为 textareafield设置maxlength。
{ xtype: 'textareafield', name: 'user_message', id: 'user_message', height:150, maxLength : 50, margin:'5 10 22 10', fieldLabel: "Message" }