我有一个简单的 ExtJS 网格,似乎无法显示列标题。数据很好地显示在行中,并且整个数据集适合分配的空间并留有空间。网格被渲染成一个 div,它本身就是一个模态对话框的来源。我错过了什么?
HTML 代码:
<div id="wrapperdiv" style="display:none"></div>
对话框代码:
$('#wrapperdiv').dialog({
title: 'title',
resizable: false,
modal: true,
width: 700,
height: 300,
buttons: {
Close: function () {
$(this).dialog('close');
}
}
});
网格代码:
var panel = Ext.create(
'Ext.grid.Panel',
{
border: true,
autoScroll: true,
width: 680,
height: 200,
layout: 'fit',
id: 'theGrid',
renderTo: 'wrapperdiv',
columns:
[
{ text: 'Col1', flex: 1, dataIndex: 'col1', hideable: false, sortable: true },
{ text: 'Col2', width: 120, align: 'center', dataIndex: 'col2', hideable: false, sortable: false },
{ text: 'Col3', width: 70, align: 'center', dataIndex: 'col3', hideable: false, sortable: false },
{ text: 'Col4', width: 100, align: 'center', dataIndex: 'col4', hideable: false, sortable: false }
],
store: dataStore
});