.aw-list-box {
border:none;
}
.aw-tree-sign {
font-size: 1px; /* corrects vertical position */
}
.aw-item-template {
height: 30px;
font-size: 12px;
background: #fff8dc;
border: 1px solid black;
}
<style>
.aw-list-box {
border:none;
}
.aw-tree-sign {
font-size: 1px; /* corrects vertical position */
}
.aw-item-template {
height!important: 30px;
font-size: 12px;
background: #fff8dc;
border: 1px solid black;
}
</style>
</table>
<br>
<!-- <INPUT TYPE="submit" VALUE="Select"> -->
<script>
/////////ACTIVE WIDGET//////////
var treData = [<%=treeData%>];
var tree = {<%=strHolder%>};
var tre = new AW.UI.Tree;
tre.setStyle("background", "transparent");
tre.setStyle("height", "65%");
tre.setStyle("width", "100%");
tre.setItemText(treData);
tre.setViewCount(function(i){return tree[i] ? tree[i].length : 0});
tre.setViewIndices(function(i){return tree[i]});
tre.setStyle("border", "cornsilk");
tre.setStyle("font", "verdana, arial, helvetica, sans-serif");
tre.onItemClicked = function(){
return true;
}
document.write(tre);
</script>
This topic is archived.