Sencha Touch 以编程方式选择或突出显示嵌套列表中的一项
我尝试使用以下代码选择/突出显示嵌套列表的一项:
var activelist= nestedList.getActiveItem();
var listselectednode = activelist.getNode(1);
nestedPanel.fireEvent('itemtap',activelist,1,listselectednode ,e);
但不起作用。
帮助
I try to select/highlight an item of nestedlist with this code:
var activelist= nestedList.getActiveItem();
var listselectednode = activelist.getNode(1);
nestedPanel.fireEvent('itemtap',activelist,1,listselectednode ,e);
but not work.
Help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了后代的利益,这里是您如何选择(突出显示)节点。这个答案改编自对该问题的评论。
以下是选择和点击节点的方法(按 ID)。
For posterity's sake here is how you just select (highlight) a node. This answer was adapted from the comments on the question.
And here is how you select and tap a node (by ID).