0

我创建了包含 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',
                        }
                    ]
                }
            ]
                    }
       ]
4

1 回答 1

0

首先删除“value”参数后的逗号(,)。现在使用 css 类或内联样式来固定选择字段的高度。

xtype: 'selectfield',
name: 'test',
style: 'height:100px',
于 2012-06-04T11:36:59.950 回答