在Grid中添加组件

时间:2012-03-21 17:14:54

标签: extjs extjs4

您好我想在网格中添加组件 我试着这样做 Rendering a component into an ExtJS grid 但我在牢房里看到了 和网格下的按钮

我使用ExtJs 4

    columns:[
      {header:"test", dataIndex:'registrationDate', width:30, renderer:function (value, id, r) {
            var id = Ext.id();
            new Ext.Button({
                text:"1", handler:function (btn, e) {
                    // do whatever you want here
                }
            }).render(document.body, id);

            return('<div id="' + id + '"></div>');
        }}
    ],

1 个答案:

答案 0 :(得分:0)

如果您只需要列中带有click处理程序的按钮,请使用actioncolumn xtype。