knockout js - 如何判断模型项是否已更改
我有以下视图
<ul data-role="listview" data-inset="true">
<!-- ko with: model.Item_selected -->
<li data-role="list-divider" class="stay"><span>Details</span></li>
<span title="Name" data-bind="text: name"></span>
</li>etc...
<!-- /ko -->
</ul>
我遇到的问题是 jquery mobile 的列表没有更新,因此我需要调用 jqmobile 列表对象来重新应用格式化/增强。是否有一个模型更改事件可以让我知道何时应该调用视图更新列表函数
I have the following view
<ul data-role="listview" data-inset="true">
<!-- ko with: model.Item_selected -->
<li data-role="list-divider" class="stay"><span>Details</span></li>
<span title="Name" data-bind="text: name"></span>
</li>etc...
<!-- /ko -->
</ul>
The problem I have is jquery mobile's list is not updating so I need to call the jqmobile list object to reapply the formatting/enhancing. Is there a model change event I can hook into to to let me know when I should be calling a view update list function
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要订阅http://knockoutjs.com/documentation/observables.html
You need to subscribe http://knockoutjs.com/documentation/observables.html