日期:2014-05-16  浏览次数:20297 次

Extjs3.4添加一个静态表单
就是右边那个里面添加个静态表单
Ext.onReady(function() {
var viewport = new Ext.Viewport({
    layout: 'border',
    items: [ {
        region: 'west',
       // collapsible: true,
      //  title: 'Navigation',
        width: 300,
        minSize:140,
        maxSize:400,
        enableDD:false, //是否支持拖拽效果
        autoScroll:true,
        containerScroll:true, //是否支持滚动条
        animate:false,
        split:true
    }, {
     id: 'date',
        region: 'center',
        //在这里添加
    }]
    
});
});
extjs javascript 表单

------解决方案--------------------
 {
        id: 'date',
        region: 'center',
//在这里添加
        items:[
            {
                xtype:'textfield'
            }
        ]
        
    }]