summaryrefslogtreecommitdiffstats
path: root/funcweb/funcweb/static/javascript/utils.js
blob: d06be6c32dd3f395870224c95ae37087c8ac4262 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function checkAll(form_element){

}

function uncheckAll(form_element){
    
}

function checkController(form_element,check_element){
    if (check_element.checked == 1){
        checkAll(form_element);
    }
    else
        uncheckAll(form_element);
}