Sencha触摸选择列表滚动问题

时间:2012-06-04 11:20:05

标签: sencha-touch-2

我创建了包含1个选择域的工具栏。 选择字段中的项目更多&没有办法知道列表中有更多项目。 我怎么解决这个问题。请帮我。 这是代码

    items: [
        {
           xtype : 'toolbar',
            docked: 'top',
            id: 'toptool',
            flex: 1,
            items: [
                {
                    xtype: 'selectfield',
                    name: 'test',

                    options: [
                        {
                            text: 'cat 1',
                            value: '1',
                        },
                        {
                            text: 'cat 2',
                            value: '2',
                        },
                        {
                            text: 'cat 3',
                            value: '3',
                        },
                        {
                            text: 'cat 1',
                            value: '1',
                        },
                        {
                            text: 'cat 2',
                            value: '2',
                        },
                        {
                            text: 'cat 3',
                            value: '3',
                        },
                        {
                            text: 'cat 1',
                            value: '1',
                        },
                        {
                            text: 'cat 2',
                            value: '2',
                        },
                        {
                            text: 'cat 3',
                            value: '3',
                        },
                        {
                            text: 'cat 1',
                            value: '1',
                        },
                        {
                            text: 'cat 2',
                            value: '2',
                        },
                        {
                            text: 'cat 3',
                            value: '3',
                        },
                        {
                            text: 'cat 1',
                            value: '1',
                        },
                        {
                            text: 'cat 2',
                            value: '2',
                        },
                        {
                            text: 'cat 3',
                            value: '3',
                        }
                    ]
                }
            ]
                    }
       ]

1 个答案:

答案 0 :(得分:0)

首先关闭全部删除"值"之后的逗号(,)参数。现在使用css类或内联样式来修复选择字段的高度。

xtype: 'selectfield',
name: 'test',
style: 'height:100px',