Spark 文本区域中的 HTML
尝试向 Mobile Flex 4.5 中的 TextArea 添加一些 html,但不断收到错误:
“1180:调用可能未定义的 方法 StyleableTextField。”
对于以下行:
StyleableTextField(txtMyText.textDisplay).htmlText = "sample <b>text</b>";
Trying to add some html to a TextArea in Mobile Flex 4.5 but keep getting the error:
"1180: Call to a possibly undefined
method StyleableTextField."
For the following line:
StyleableTextField(txtMyText.textDisplay).htmlText = "sample <b>text</b>";
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看起来像:
有效。只需导入:
即可使其正常工作。
Looks like:
works. Just needed to import:
to get it working.
不能直接设置TextArea实例的htmlText属性吗?
像这样的事情:
罗布
Can't you set the htmlText property of the TextArea instance directly?
Something like this:
Rob