diff options
Diffstat (limited to 'install/static/netgroup.js')
-rw-r--r-- | install/static/netgroup.js | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/install/static/netgroup.js b/install/static/netgroup.js deleted file mode 100644 index 6df2398a3..000000000 --- a/install/static/netgroup.js +++ /dev/null @@ -1,41 +0,0 @@ -function setupNetgroup(facet){ - if (facet == "details"){ - setupNetgroupDetails(); - }else{ - setupNetgroupSearch(); - } -} - - - - -function setupNetgroupDetails(){ - var detailsForm = new DetailsForm(); -} - - -function setupNetgroupSearch(){ - - - var columns = [ - {title:"Netgroup",column:"cn",render: function(current,cell){ - renderDetailColumn(current,cell,current[this.column],"netgroup"); - }}, - {title:"Description", column:"description",render: renderSimpleColumn}]; - - var netgroupSearchForm = new SearchForm("netgroup", "find", columns); - - $("#query").unbind(); - $("#query").click(function(){ - sampleData = "sampledata/netgrouplist.json"; - executeSearch(netgroupSearchForm); - }); - $("#new").unbind(); - $("#new").click( function() { - alert("New Netgroup..."); - }); - - -} - -
\ No newline at end of file |