Flex Textarea:粘贴时去除换行符
如果我在 Spark TextArea 中给出restrict="[az][AZ]",并将内容粘贴到其中,则所有换行符都会被删除。手动按 Enter 效果很好。问题出在哪里?
<s:TextArea restrict="[A-Z][a-z]"/>
mx TextArea 工作正常。
If I give restrict="[a-z][A-Z]" in a spark TextArea, and paste content into it, all the line breaks are stripped. Manually pressing enter works fine. Where is the problem?
<s:TextArea restrict="[A-Z][a-z]"/>
The mx TextArea works fine.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您限制换行符,则换行符将不起作用。尝试这样做:
Line breaks won't work if you restrict it. Try doing this:
这有效地处理了粘贴过程中可能发生的所有场景/操作。
This effectively takes care of all scenarios/ operations that can occur during paste.