...
|
...
|
@@ -143,14 +143,7 @@ $("#btn4type").click(function () { |
|
|
*/
|
|
|
function searchType(ip){
|
|
|
$("#detailTable").hide();
|
|
|
$.ajax({
|
|
|
url: contextPath + "/zkTree/getRoot",
|
|
|
type: "post",
|
|
|
dataType: "json",
|
|
|
data: {
|
|
|
ip: ip
|
|
|
},
|
|
|
success: function (data) {
|
|
|
$("#rootTable").table("load",{ip:ip});
|
|
|
$(function () {
|
|
|
$("#rootTable").table({
|
|
|
url: contextPath + "/zkTree/getRoot",
|
...
|
...
|
@@ -195,13 +188,9 @@ function searchType(ip){ |
|
|
});
|
|
|
|
|
|
});
|
|
|
},
|
|
|
error: function (e) {
|
|
|
}
|
|
|
|
|
|
}
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
function updateRoot(rowData,ip){
|
|
|
paramObj.name = rowData.name;
|
...
|
...
|
|