我使用樹& treegrid查詢插件:http://www.jeasyui.com/demo/index.php 我想拖動n拖放當前存在的功能,但問題是我想複製節點,而不是移動它。 另外我想編輯treegrid節點雙擊&保存在ENTER上。我能夠編輯dbl點擊節點,但是dnt knw如何捕獲ENTER事件!下面 是,我有編輯節點實現代碼:jquery easyui樹拖放&輸入
<table id="bomSubTree" style="width:600px;height:300px"> </table>
.......
$('#bomSubTree').treegrid({
height: 550,
//width:600,
dnd: true,
method: 'get',
treeField: 'text',
idField: "oid",
pagination: "true",
fitColumns: "true",
url: '/product_configurator/populate_sub_tree.json',
columns: [
[{
field: 'quantity',
title: 'Quantity',
width: 100,
editor: "numberbox",
align: "right"
}
]
],
frozenColumns: [
[{
title: 'Name',
field: 'text',
width: 500
}]
],
onDblClickRow: function (row) {
$(this).treegrid('beginEdit', row.oid);
}
});`
能ANY1請幫助我!?
您可以通過keycode值13捕獲Enter事件.. – 2012-03-02 06:22:30
thnx that .. – Shruti 2012-03-20 07:55:52
嗨,@Shruti歡迎。 :) – 2012-03-20 10:05:17