extグリッドパネルにhtmlの代わりにextパネルを追加したくありません。私が今持っているのはこれです:
features: [{
ftype: 'rowbody',
getAdditionalData: function (data, rowIndex, record, orig) {
var headerCt = this.view.headerCt,
colspan = headerCt.getColumnCount();
// Usually you would style the my-body-class in CSS file
return {
rowBody: '<div style="padding: 1em">' + record.get("description") + '</div>',
rowBodyCls: "my-body-class",
rowBodyColspan: colspan
};
}
}],
ただし、rowBodyの代わりに、ボタンやその他のレイアウトを追加できる標準のパネルを含めたいと思います。
それは可能ですか?