如何在点击钛金属的文本字段时显示日期选择器?

时间:2013-09-09 11:05:52

标签: datepicker titanium titanium-mobile

我可以显示datepicker。但在本机应用程序用户单击文本字段和日期选择器是打开的。所以我需要使用钛平台实现该功能。你可以建议一个方法或给出一些例子。当用户点击文本字段时,它不显示键盘只显示日期选择器吗?

2 个答案:

答案 0 :(得分:1)

简单的只是在运行时添加一个datepicker。

浏览此链接演示所有

Datepicker on click of text box

答案 1 :(得分:0)

您必须将文本字段的editable属性设置为false,然后在文本字段的“单击”回调中调用您的选择器。

var textfield = Ti.UI.createTextField ({
    editable: false // That way the keyboard won't show up
    //your other textfield properties
});

textfield.addEventListener('click', function(e) {
    showDatePicker();
});