动态更新 Sencha Touch Carousel 项目的 HTML 内容?
如何更新 Sench Touch Carousel 项目的 HTML 内容? 我正在尝试类似的方法,但没有效果:
item = carousel.getActiveItem();
item.html = "...new html string ...";
carousel.doComponentLayout();
谢谢。
How do I update the HTML content of a Sench Touch Carousel item ?
I'm trying something like this and it is having no effect:
item = carousel.getActiveItem();
item.html = "...new html string ...";
carousel.doComponentLayout();
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
经过多次实验,发现将
item.html = "...";
更改为item.update( "..." );
可以解决问题。After much experimentation, found that changing
item.html = "...";
toitem.update( "..." );
does the trick.