extjs插件并行布局

痴心易碎 提交于 2020-02-25 22:38:03

{
                layout: 'column',
                items: [
                    {
                        layout: 'form',
                        items:[{
                            xtype:'textarea',
                            id:'textarea',
                            labelWidth: 100,
                            fieldLabel: '批量导入',
                            style:"margin-top:10px;",
                            width: 150,
                            height:200
                        }]
                    },{
                        layout: 'form',
                        items:[
                            {
                            labelWidth: 100,
                            width: 250,
                            height:150,
                            style:"margin-top:10px;margin-left:-25px;border:0;background:transparent;",
                            xtype:'textarea',
                            readOnly: true,
                            value : ''
                            },{
                                width: 50,
                                height: 30,
                                xtype: 'button',
                                text: '导入',
                                style:"margin-left:50px;margin-top:15px;",
                                handler: function () {
                                }
                            }
                        ]
                    }
                ]
            }

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!