ExtjsGrid 内で Rowexpander を使用しています。RowExpander のテンプレートには、ユーザーから値を取得するために使用されるテキスト領域があります。
以下は私のコードです。値を読み取るにはどうすればよいですか
var expander = new Ext.ux.grid.RowExpander({
tpl : new Ext.Template(
'<p><b></b><div class="abc"> <input type="textarea" id = "hans_" name ="hans_" value = "{comment}"</ div></p><p></p><p>{promptMsg}</p>'
),
listeners:
{
expand: function(ex, record, body, rowIndex){
},
collapse: function(ex, record, body, rowIndex){
}
}
});