如何在extJS标签字段中放置文本字段项

klsxnrf1  于 2022-11-04  发布在  其他
关注(0)|答案(1)|浏览(164)

如何在extJS选项卡字段中放置文本字段项。
我有一个文本字段的要求,我想把它放在extJS文本字段。这是图像。

现在下面是我的代码。标签是comig罚款,但不能看到extJS文本字段。任何具体的,我在这里失踪,

{   
            xtype : "panel",
            region: 'center',
            floatable: false,
            margin: '0 0 0 0',
            cls: 'tabpanel-common ',
            items:[{
                xtype: 'tabpanel',
                items: [{
                    xtype: 'panel',
                    title: "panel 1",

                    items: []

                },{
                    xtype: 'panel',
                    title: "Panel2",
                    items: []

                },{
                    xtype: 'panel',
                    title: "panel3",
                    items: []

                },{
                    xtype: 'panel',
                    title: "panel4",
                    items: []

                },{
                    xtype: 'tbfill'
                },{
                    xtype: 'textfield',
                   // itemId: 'buttonItemId',
                    text: 'Button',
                    hidden: false,
                    padding: '3px',
                    title: "Search",
                    margin: '2px 5px 5px 2px',
                }]
            }],

            listeners: {
                boxready: 'boxready',
                scope: 'controller'
            },
        }
qgzx9mmu

qgzx9mmu1#

您可以使用tabBar配置属性:

Ext.application({
    name: 'Fiddle',

    launch: function () {
        Ext.create('Ext.tab.Panel', {
            height: 400,
            renderTo: document.body,
            tabBar: {
                items: [{
                    xtype: 'tbfill'
                }, {
                    xtype: 'textfield',
                    triggers: {
                        search: {
                            cls: 'x-form-search-trigger',
                            handler: function () {
                                console.log('Search trigger is clicked', this.getValue());
                            }
                        }
                    }
                }]
            },
            items: [{
                title: 'Foo',
                html: "FOO"
            }, {
                title: 'Bar',
                html: "BAR"
            }]
        });
    }
});

相关问题