﻿// Client-side behaviour for a treeview. Checks all leafnode-checkboxes when a parent-node checkbox is checked, and checks the
// parent-checkbox if at least one leafnode-checkbox is checked. Also sets all lead-nodes to unchecked if parent-node is unchecked.
//
// This is one of two solutions to make the treeview adopt this behaviour. The treenode does not make any AutoPostBack
// to the server when the user checks/unchecks node-checkboxes. The other solution is to ignite a postback from a
// client-script, and change the checked attribute server-side.
//
// Original script from: http://forums.asp.net/p/976122/1733193.aspx#1733193
// Modified/Extended by: Morten A. Lines, Jobbnorge AS
// 2009-10-29

function postbackOnCheck(evt) {
    var src = window.event != window.undefined ? window.event.srcElement : evt.target;
    var isChkBoxClick = (src.tagName.toLowerCase() == "input" && src.type == "checkbox");
    if(isChkBoxClick)
    {
        var parentTable = GetParentByTagName("table", src);
        var nxtSibling = parentTable.nextSibling;
        if(nxtSibling && nxtSibling.nodeType == 1)//check if nxt sibling is not null & is an element node
        {
            if(nxtSibling.tagName.toLowerCase() == "div") //if node has children
            {
                //check or uncheck children at all levels
                CheckUncheckChildren(parentTable.nextSibling, src.checked);
            }
        }
        //check or uncheck parents at all levels
        CheckUncheckParents(src, src.checked);
    }
}
function CheckUncheckChildren(childContainer, check)
{
  var childChkBoxes = childContainer.getElementsByTagName("input");
  var childChkBoxCount = childChkBoxes.length;
  for(var i = 0; i<childChkBoxCount; i++)
  {
    childChkBoxes[i].checked = check;
  }
}
function CheckUncheckParents(srcChild, check)
{
   var parentDiv = GetParentByTagName("div", srcChild);
   var parentNodeTable = parentDiv.previousSibling;
  
   if(parentNodeTable)
    {
        var checkUncheckSwitch = true;
        var inpElemsInParentTable = parentNodeTable.getElementsByTagName("input");
        if(inpElemsInParentTable.length > 0)
        {
            var parentNodeChkBox = inpElemsInParentTable[0];
            parentNodeChkBox.checked = checkUncheckSwitch;
            //do the same recursively
            CheckUncheckParents(parentNodeChkBox, checkUncheckSwitch);
        }
    }
}
function AreAllSiblingsChecked(chkBox)
{
 var parentDiv = GetParentByTagName("div", chkBox);
 var childCount = parentDiv.childNodes.length;
 for(var i=0; i<childCount; i++)
 {
    if(parentDiv.childNodes[i].nodeType == 1) //check if the child node is an element node
    {
        if(parentDiv.childNodes[i].tagName.toLowerCase() == "table")
        {
           var prevChkBox = parentDiv.childNodes[i].getElementsByTagName("input")[0];
          //if any of sibling nodes are not checked, return false
          if(!prevChkBox.checked)
          {
            return false;
          }
        }
    }
 }
 return true;
}
//utility function to get the container of an element by tagname
function GetParentByTagName(parentTagName, childElementObj)
{
  var parent = childElementObj.parentNode;
  while(parent.tagName.toLowerCase() != parentTagName.toLowerCase())
  {
     parent = parent.parentNode;
  }
return parent;   
}
