开发者

Putting a FormPanel inside a RowExpander?

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 r开发者_如何学JAVAight 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?


Hilarious hackery:

Use a temporary element as the template, and on the expansion event, render the form to the temporary element and then remove it from the DOM.


I haven't tried this, but looking at the source of the RowExpander it seems that a possible way to do it is to render the FormPanel to the expanded row body inside the RowExpander's expand event handler.

However, you also need to clean up the FormPanel when the view gets refreshed. That part is trickier. I think you could probably hook the grid view's beforerefresh event to destroy all the FormPanel instances. However, that wouldn't work with the buffered grid view, and it also means that any sort of view refresh kills anything you were doing in the FormPanels.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜