summaryrefslogtreecommitdiffstats
path: root/install/static/hostgroup.js
blob: 290460d81faefc3e5f3bc111a07c3a52fc35973c (plain)
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
42
43
44
45
46
47
48
function setupHostgroup(facet){
    if (facet == "details"){
        hostgroupDetailsForm.setup();
    }else if (facet == "add"){
        hostgroupBuilder.setup();
    }else{
        hostgroupSearchForm.setup();
    }
}

var hostgroup_details_list =
    [['identity', 'Hostgroup Details', [
        ['cn', 'Hostgroup Name'],
        ['description', 'Description']]]];


var hostgroupDetailsForm = new DetailsForm("hostgroup",hostgroup_details_list,"cn","sampledata/hostgroupshow.json") ;



function hostgroupAddOptionsFunction (){
    var options = {
        name: $('#pkey').val(),
        description: $('#description').val()
    };
    return options;
}

var hostgroupAddProperties =
    [{title: 'Hostgroup Name', id: 'pkey', type: 'text'},
     {title: 'Description', id: 'description', type: 'text'}];

var hostgroupBuilder = new EntityBuilder("hostgroup",hostgroupAddProperties,hostgroupAddOptionsFunction);


var hostgroupSearchColumns = [
    {
        title:"Hostgroup", 
        column:"cn", 
        render:  function(current,cell){
            renderPkeyColumn(hostgroupDetailsForm, current,cell);
        }
    },
    {title:"Description", column:"description",render: renderSimpleColumn}];

var hostgroupSearchForm = 
    new SearchForm("hostgroup", "find", hostgroupSearchColumns,
                   "sampledata/hostgrouplist.json");