私はGridPanelを持っていますが、ご覧のとおり、最初の列(つまりlocked
)は他の列のように整列されていません。
それはバグですか、それとも私は何か間違ったことをしていますか?
編集:列に関するいくつかのスニペットは次のとおりです。
initComponent: function(){
this.renderTo = this.divId;
this.status = "normal";
Ext.Array.insert(this.columns,0,this.cols);
this.columns = this.cols;
this.callParent();
}
オブジェクトは次のようになりcols
ます。
for(var i in params){
if(i != config.staticColumn)
cols.push({header: headers[i], dataIndex: i});
else{
cols.push({header: headers[i], dataIndex: i, locked: true});
}
}
そのスペースは実際には次のとおりです。
<div id="gridview-1323-spacer" style="height: 17px"></div>
これが何を意味するのか、そもそもなぜ作成されるのかわかりません。