0

我的问题是我想在 Asp-web 应用程序中的 treeView 上创建一个应用程序,我想使用上下文菜单删除更新并将节点插入到树视图中,但我在鼠标左键单击时选择了 id,但我的上下文菜单是右键单击打开请在这方面帮助我

4

1 回答 1

0

Asp:Treeview 基本上没有实现这个选项,你必须添加javascript。

链接:http: //msdn.microsoft.com/fr-fr/library/system.web.ui.webcontrols.treeview_properties

对于这个实现,我更喜欢 Ajax .net 控件

http://aspnetajax.componentart.com/control-specific/treeview/features/node_contextMenus/WebForm1.aspx

对于 Jquery - 上下文菜单

contextMenu('yourMenu', {
    bindings: {
        'delete': function(f) { ShowAction(f, "Delete"); }
    }
});

function ShowAction(f, a) {
    alert('Item is ' + f.id + '\nAction is' + a + "\nHtml is " + $(f).html());
}
于 2012-08-24T08:28:36.633 回答