このグリッドとフォームパネルがあります。フォーム パネルにデータのグリッドを追加し、フォーム パネルのボタンを引き続き使用したいと考えています。
myGrid= Ext.create('Ext.grid.Panel',{
layout: {
type: 'fit'
},
id: 'gridId',
title: null,
store: myDataStore,
columns: [{
header: 'header 1',
dataIndex: 'index_1',
width: 120
}, {
header: 'header 2',
dataIndex: 'index_2',
width: 120
}, {
header: 'header 3',
dataIndex: 'index_3',
width: 120
}],
stripeRows: true
})
formPanel= Ext.create('Ext.form.Panel',{
id:'panelId',
items:[myGrid],
buttons: [{
// cancel, save, other buttons
}]
})
しかし、私はこのエラーが発生します
HierarchyRequestError: Node cannot be inserted at the specified point in the hierarchy
私は何を間違っていますか?