2011-07-06 53 views
1

我正在使用ExtJs 4。我有一個網格,但我沒有預先定義的商店或專欄。我只是不知道應該顯示什麼網格。但我仍然需要使用Json標記來呈現網格。ExtJs。最簡單的方法來顯示空格

我想要做這樣的事情:

//grid with empty store and no collumns 
{ 
    xtype: 'grid', 
    columns: [], 
    store: new ArrayStore([]) 
} 

什麼是做到這一點的easyest方式?

回答

2

您無法加載創建沒有任何列的網格..但是您可以創建一個沒有任何數據(只需將存儲設置爲autoload: false)。例如..

{ 
    xtype: 'grid', 
    //..other config here 
    store: new Ext.data.JsonStore({ 
     url: 'store/url.php', 
     autoLoad: false 
    }), 
    cm: new Ext.grid.ColumnModel({ 
    columns: [ 
     { dataIndex: 'id', header: ' ' } 
    ] 
    }) 
} 
+0

tnx很多..這將做.. –

相關問題