当extjs的grid加载到window中时引发的血案

今天需要用到一个extjs的window控件中内嵌grid。本来一个很简单的功能,没想到最后做下来,花了我不少时间,真是很郁闷啊。

不多说了,先看图。

正常效果:


出错情况:


最后研究下来,原来是要先定义grid,在定义window,也是先后顺问题,如果把gridTest定义放在window之后,最后出现上图出错情况,后过来就正常了。

看代码:

var gridTest = new Ext.grid.GridPanel({
    region: 'north',
    border: false,
    columns: [
            { text: "条码", width: 100, dataIndex: 'BarCode' , sortable: true },
            { text: "名称", width: 120, dataIndex: 'GoodsName' , sortable: true },
            { text: "数量", width: 60, dataIndex: 'Quantity' , sortable: true },
            { text: "单位", width: 60, dataIndex: 'GoodsUnit' , sortable: true },
            { text: "进价", width: 60, dataIndex: 'GoodsBuyPrice' , sortable: true },
            { text: "售价", width: 60, dataIndex: 'GoodsSellPrice' , sortable: true },
            { text: "存放位置" , width: 120, dataIndex: 'WareHouse', sortable: true },
            { text: "供应商" , width: 100, dataIndex: 'SupplierName', sortable: true },
            { text: "进货员" , width: 100, dataIndex: 'Employee', sortable: true },
            { text: "状态", width: 60, dataIndex: '_StrStatus' , sortable: true },
            { text: "入库日期" , width: 80, dataIndex: '_DtCreate', sortable: true }
        ],
    width: 700,
    height: 500,
    frame: true
});

var winChooseGoods = new Ext.Window({
    title: '进货',
    layout: 'border',
    width: 700,
    height: 500,
    closeAction: 'hide',
    plain: true,
    items: [gridTest],
    buttons: [{
        text: '确定',
        handler: function () {
            winChooseGoods.close();
        }
    }, {
        text: '取消',
        tabIndex: 12,
        handler: function () {
            winChooseGoods.close();
        }
    }]
});


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值