- 注册时间
- 2013-4-17
- 最后登录
- 2013-4-23
- 阅读权限
- 10
- 积分
- 17
- 精华
- 0
- 帖子
- 4
|
下面这样写直接忽略了编辑状态,如何在子节点编辑完后,再提交?
function onEditNode(e) {
var tree = mini.get("tree1");
var node = tree.getSelectedNode();
tree.beginEdit(node);
$.ajax({
url: "",
type: "post",
success: function (text) {
mini.alert("ok");
},
error: function (jqXHR, textStatus, errorThrown) {
alert(jqXHR.responseText);
}
});
};
|
|