如何在 Sencha Touch 中的控制器中更新没有模型的视图?

发布于 2024-11-05 03:26:31 字数 177 浏览 0 评论 0原文

对于某些视图,我仅使用控制器(无模型)。对视图的组件进行一些更改后如何更新视图。比如说,我可以在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柠檬色的秋千 2024-11-12 03:26:31

您只需更改标签元素的 HTML 即可。

var tf = <some text field>
tf.labelEl.setHTML('<span>NEW LABEL</span>');

似乎没有一种简单的方法可以从它们公开的 API 中设置标签。但如果他们这样做了,我想它会是这样的:

function setLabel(text){
  this.labelEl.setHTML('<span>' + text + '</span>');
}

You could just alter the HTML of the label element.

var tf = <some text field>
tf.labelEl.setHTML('<span>NEW LABEL</span>');

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:

function setLabel(text){
  this.labelEl.setHTML('<span>' + text + '</span>');
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文