﻿var FrontProductCategory_showSelectedTree = {
	cestatic:"",
	categoryId:"",
	tree:"",
	cateIDs:"",
	//延迟加载显示分类信息
	//context-上下文,actionURL-地址,categoryId1-本身分类id,categoryId2-选中分类id,treeboxId-选中的id,namelength-名称长度,parentIDs-所有父节点id
	loadTreeLazy:function(context,actionURL,categoryId1,categoryId2,treeboxId,namelength,cateIDs){
		if(categoryId2=="")
		{
			categoryId2="1";
		}
		FrontProductCategory_showSelectedTree.tree=new dhtmlXTreeObject(treeboxId,"100%","100%",categoryId2);
		FrontProductCategory_showSelectedTree.tree.setImagePath(context+"/images/product/dhtmlXTree/images/");
		FrontProductCategory_showSelectedTree.cestatic=actionURL;
		this.categoryId=categoryId1;
		this.cateIDs=cateIDs;
		//点击时触发
		FrontProductCategory_showSelectedTree.tree.setOnClickHandler(this.toonclick);
		FrontProductCategory_showSelectedTree.tree.setXMLAutoLoading("comp-FrontProductCategory_showTreeLazily-002?namelength="+namelength);
		FrontProductCategory_showSelectedTree.tree.loadXML("comp-FrontProductCategory_showTreeLazily-002?namelength="+namelength+"&id="+categoryId2,this.changeStyle);
	},
	//打开某一指定id的分类
	//cid--分类id
	toonclick:function(cid){
		document.location = FrontProductCategory_showSelectedTree.cestatic.replace("parameter_categoryid",cid);
	},
	//改变样式
	changeStyle:function(){
		if(FrontProductCategory_showSelectedTree.cateIDs){
			if(FrontProductCategory_showSelectedTree.cateIDs==""){
				return;
			}
			var idALL = document.getElementsByName(FrontProductCategory_showSelectedTree.cateIDs);
			for(var i=0 ; i < idALL.length ; i++){
				var j = i-1;
				//alert(i+"***"+j);
				if(j>=0){
					var  oc = FrontProductCategory_showSelectedTree.tree.getOpenState(idALL[j].value);
					if(oc==""){
						setTimeout("FrontProductCategory_showSelectedTree.changeStyle()",100);
					}
				}
				if(i == (idALL.length-1)){
					FrontProductCategory_showSelectedTree.tree.selectItem(idALL[i].value);
				}else{
					FrontProductCategory_showSelectedTree.tree.openItem(idALL[i].value);
				}
			}
		}
	}
}
