这个页面为什么是白的呢???
var brandWindow = new Ext.Window({
  title:'其他条件',
  iconCls:'icon-win',
  id:'submit_bnner',
  width:350,
  height:300,
  layout:'fit',
  constrain:true,
  maximizable:false,
  resizable:false, 
  closable:false,
  autoDestroy:true
});var tbar_place = new Ext.Panel({
  columnWidth: 1,
  layout: 'form',            
  border: false,      
  labelWidth : 120,
  items: [{
    xtype: 'numberfield',
    fieldLabel:"船舶在港时间(天)",
    minValue:0.1,
    minText:'船舶在港时间(天)不能小于0.1',
  //.....................
});
var cont_list = new Ext.Panel({
  layout: 'column',        
  border: false,        
  buttonAlign:'center',
  buttons:[{
    text: '确定',        
    handler: function() {
  //........
  //.........
});brandWindow.add(tbar_place,cont_list);
brandWindow.doLayout();
brandWindow.show();
麻烦高人指点下