如何创建一个类似于 Titanium Mobile 上的表格视图的选择器?

发布于 2024-12-12 10:39:57 字数 74 浏览 0 评论 0原文

如何创建一个像具有 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 技术交流群。

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

发布评论

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

评论(2

素年丶 2024-12-19 10:39:57

假设您的父窗口上有一个 TabGroup/TabView,您可以在 pickerRow 中添加一个事件侦听器,您可以调用 tabs.open(new_window) ,这将具有相同的效果。

所以:

var tabGroup = Ti.UI.createTabGroup();
var win1 = Ti.UI.createWindow({title: 'old win'});
var win2 = Ti.UI.createWindow({title: 'new win'});
var tab = Ti.UI.createTab({window: win1});
tabGroup.tabs = [tab];
tabGroup.setActiveTab(0);

var pickerRow = Ti.UI.createPickerRow();
pickerRow.addEventListener('click', function(e) { tab.open(win2); });

但是话又说回来,我从来没有见过 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:

var tabGroup = Ti.UI.createTabGroup();
var win1 = Ti.UI.createWindow({title: 'old win'});
var win2 = Ti.UI.createWindow({title: 'new win'});
var tab = Ti.UI.createTab({window: win1});
tabGroup.tabs = [tab];
tabGroup.setActiveTab(0);

var pickerRow = Ti.UI.createPickerRow();
pickerRow.addEventListener('click', function(e) { tab.open(win2); });

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.

乖乖兔^ω^ 2024-12-19 10:39:57

事实证明,您需要在选择器本身上添加事件,然后您可以打开一个新窗口。

turns out you need to add the event on the picker itself and you can open a new window.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文