如何创建一个类似于 Titanium Mobile 上的表格视图的选择器?
如何创建一个像具有 hasChild 属性的 tableViewRow 一样的 pickerRow?我希望实现后退按钮在屏幕上的效果。
How do I create a pickerRow that acts like a tableViewRow with the hasChild property? I wish to achieve the affect of the back button on the screen after.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设您的父窗口上有一个 TabGroup/TabView,您可以在 pickerRow 中添加一个事件侦听器,您可以调用 tabs.open(new_window) ,这将具有相同的效果。
所以:
但是话又说回来,我从来没有见过 pickerRow 充当窗口开启器,所以我想说 Titanium SDK 本身并不是 100% 支持的。
Assuming that you have a TabGroup/TabView on the parent window, you can just add in a event listener in the pickerRow which you can call tabs.open(new_window), which will have the same effect.
So:
But then again, I've never seen a pickerRow act as a window opener, so I'm going to say this isn't 100% supported by the Titanium SDK itself.
事实证明,您需要在选择器本身上添加事件,然后您可以打开一个新窗口。
turns out you need to add the event on the picker itself and you can open a new window.