ExtJS 4.1
Gridにテキストエリアのエディターを追加しようとしたとき詰まった。
editor: {
type: 'textarea'
}
では textfield(input)になってしまう。
editor :{
xtype: 'texterea'
}
でもだめ。
editor: Ext.create('Ext.form.TextArea',{})
で解決。
ExtJS 4.1
Gridにテキストエリアのエディターを追加しようとしたとき詰まった。
editor: {
type: 'textarea'
}
では textfield(input)になってしまう。
editor :{
xtype: 'texterea'
}
でもだめ。
editor: Ext.create('Ext.form.TextArea',{})
で解決。