我可以在dgrid OnDemandGrid的column属性内使用renderHeaderCell。 现在,我想将EnhancedGrid与结构一起使用。如何实现renderHeaderCell属性?
基本上,我想在网格列中放置一个按钮。因此迁移到了增强网格。但后来我无法使用renderHeaderCell
var layout =
[[
{name: 'column1', field: 'guiLabel', width:'80%', autoComplete :true},
{name: '', field: '', width: '30px',formatter:formatterDel, filterable: false }]]
var grid1 = new EnhancedGrid({
id: "connGrid",
store : dataStore,
autoHeight:false,
style: "overflow : hidden;",
structure: layout
});