2012-01-07 2 views
0

FormPanel로 제목을 설정하면 Internet Explorer가 종료되지만 Chrome에서 정상적으로 작동합니다. 왜 이런 일이 일어 났는지 말해 줄 수 있습니까? 전체 코드는 다음과 같습니다.ExtJs4 BUG? FormPanel 정보

Ext.onReady(function(){ 
    alert('1112233'); 
    Ext.tip.QuickTipManager.init(); 
    var main = Ext.create('Ext.panel.Panel', { 
     id : "main", 
     padding: '0 0 0 50', 
     height: 550, 
     width: 800, 
     layout: { 
      type: 'table', 
      columns: 1 
     }, 
     renderTo:Ext.getBody(), 
     items: [ 
      { 
       xtype: 'form', 
       height: 471, 
       width: 632, 
       title: 'My Form', //【Here Here !If do not set Title it's all right】 
       items: [ 
        { 
         xtype: 'datefield' 
        } 
       ] 
      } 
     ] 
    }); 
}); 

답변

1

코드가 IE8 및 IE9에서 작동합니다. 그것은뿐만 아니라 IE7에서 작동합니다.

당신은 다른 어떤 것을 누락 된 fiddle

를 참조하십시오. 오타가 될 수 있습니다!