如何设置“maxChars” 可编辑组合框中的 TextInput?
我想设置可编辑组合框的 TextInput 的 maxChars
属性。 我目前正在使用更改事件将文本修剪为一定数量的字符:
private function nameOptionSelector_changeHandler(event:ListEvent):void
{
nameOptionSelector.text = nameOptionSelector.text.substr(0, MAX_LENGTH);
}
这感觉有点矫枉过正。 必须有更好的方法来做到这一点......
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我的替代方法是直接使用受保护的textInput。 这种方法允许在 GUI 构建器或代码中设置“maxChars”属性,就像对普通文本字段所做的那样。 请注意,零是 maxChars 的有效值,表示字符数不受限制。 需要重写 .childrenCreated() 以避免在 TextInput 对象存在之前尝试设置 maxChars。
My alternative is to use the protected textInput directly. This approach allows the "maxChars" property to be set in the GUI builder or code, just as you would for a normal TextField. Note that zero is a valid value for maxChars and indicates unlimited characters. The override of .childrenCreated() is needed to avoid attempting to set maxChars before the TextInput object exists.
您可以扩展
ComboBox
并覆盖内部TextInput
的默认maxChars
值。 如果需要动态设置它,可以添加一个公共方法来设置扩展类的属性。You could extend
ComboBox
and override the defaultmaxChars
value for the internalTextInput
. If you need to set it dynamically, you could add a public method to set the property on the extended class.根据 Stiggler 的建议,这是我实现的完整解决方案:
Using the suggestion of Stiggler, here is the full solution I implemented: