如何在 Sencha Touch 中的控制器中更新没有模型的视图?
对于某些视图,我仅使用控制器(无模型)。对视图的组件进行一些更改后如何更新视图。比如说,我可以在 TextField 上使用 setValue 方法来更改字段的值,但没有等效的 setLabel 方法。更改 TextField 组件的 label 属性后是否必须调用某些方法来更新视图?
For some views I use just a controller (no model). How do I update the view after I've made some changes to it's components. Say, I can use the setValue method on a TextField to change the value of the field, but there is no equivalent setLabel method. Do I have to call some method to update the view after changing the label property of a TextField component?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需更改标签元素的 HTML 即可。
似乎没有一种简单的方法可以从它们公开的 API 中设置标签。但如果他们这样做了,我想它会是这样的:
You could just alter the HTML of the label element.
There doesn't seem to be an easy way to set the label from the API they expose. But if they did, I imagine that it would look like this: