我正在使用 SenchaTouch,并希望将他们的 Picker 用于 UI 组件。我有这个代码:
var datePicker = new Ext.Picker({
slots: [
{
name : 'limit_speed',
useTitles: true,
title: 'Terminals',
data : [
{text: 'Terminalq 1', value: 1},
{text: 'Terminal 2', value: 2},
{text: 'Terminal 3', value: 3},
{text: 'Terminal 4', value: 4}
]
}
]
});
有谁知道如何让事件处理程序在 doneButton 上工作?