Is there a way I can build a FormPanel within a RowExpander on a Grid? I'd like to create extjs forms within each row, but right now I'm limited to specifying a template which must be HTML.
That is, I have this:
var expander = new Ext.ux.grid.RowExpander({
enableCaching: false,
tpl : new Ext.Template($('#row-expander-template').html())
});
How do I modify this to use Ext JS Forms within the rows?