如何在extjs4中将子菜单添加到Ext.menu.Menu的数据视图中

时间:2013-12-11 11:12:39

标签: menu extjs4 dataview

我在extjs4工作。我将Ext.menu.Menu与dataview作为项目。我的代码为=

var projectTpl = new Ext.XTemplate(
                    '<tpl for=".">',
                        '<table id="table" class="project">' ,
                            '<tr width=\"100%\">',
                                '<tpl>' ,
                                    '<td><img id="img"></td>',                      
                                '</tpl>',
                                '<td style="line-height: 150%; padding-left: 5px;">' ,
                                    '<span class="fileName"><span style = "font-weight: bold;">{projectId}</span>',
                                    '<span class="username" style="color: #707070; font-family: VegurMedium,sans-serif; font-size: 12px;">&nbsp;&nbsp;Approved the file<b> {projectName} </span> '+
                                '</td>',
                            '</tr>',
                        '</table>',
                    '</tpl>');  


         var detailsMenu =  Ext.create('Ext.menu.Menu',{
            items: [{
                xtype: 'dataview',
                autoScroll: true,
                height: 250,
                width : 400,
                store : 'ProjectStore',
                tpl:projectTpl
            }]
        });

我想将子菜单创建为“发送电子邮件”到每个datview的项目。那么如何将这样的子菜单添加到extjs4中'Ext.menu.menu'的数据视图

0 个答案:

没有答案