forked from achouhans/JavaScript-Scripting
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTreeTemplateService.js
More file actions
41 lines (38 loc) · 989 Bytes
/
Copy pathTreeTemplateService.js
File metadata and controls
41 lines (38 loc) · 989 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
* Created by rchouhan on 9/5/15.
*/
var getTreeMenuData;
var loadTreeData = function() {
return $.ajax({
type: 'GET',
url: 'data/treeData.json',
async: true,
//jsonpCallback: 'jsonCallback',
contentType: "application/json; charset=utf-8",
dataType: 'json'
});
}
var removeSelectedTreeNodes = function(nodes){
return $.ajax({
type: 'DELETE',
url: 'hortonworks/sqoop/removeSelectedTreeNodes/{nodes}',
async: true,
//jsonpCallback: 'jsonCallback',
contentType: "application/json; charset=utf-8",
dataType: 'json',
traditional: true,
data: nodes
});
}
var addSelectedTreeNodes = function(nodes){
return $.ajax({
type: 'POST',
url: '',
async: true,
//jsonpCallback: 'jsonCallback',
contentType: "application/json; charset=utf-8",
dataType: 'json',
traditional: true,
data: nodes
});
}