1
suisss
Smartsection + Block Menu + Javascript
  • 2005/10/14 19:42

  • suisss

  • Just popping in

  • Posts: 45

  • Since: 2004/6/20


Hi everyone,

I use smartsection v1.1 for XOOPS 2.2.x as article manager successfully.

In the BlockMenu , I would like to be able to click in a category of the menu to open or close like a tree menu.

I am using a Javascript in the Block Menu to make it dynamic.

Until now, I did not have problems here.

But.... I do not want that the categories have link's for the page of the categories.
And I have a second problem with the second categorie, it doesn't show the items.

I use the folowing code:

<script language="JavaScript1.2">
<!--

var head="display:''"
img1=new Image()
img1.src="fold.gif"
img2=new Image()
img2.src="open.gif"

var ns6=document.getElementById&&!document.all
var ie4=document.all&&navigator.userAgent.indexOf("Opera")==-1

function checkcontained(e){
var iscontained=0
cur=ns6? e.target : event.srcElement
i=0
if (cur.id=="foldheader")
iscontained=1
else
while (ns6&&cur.parentNode||(ie4&&cur.parentElement)){
if (cur.id=="foldheader"||cur.id=="foldinglist"){
iscontained=(cur.id=="foldheader")? 1 : 0
break
}
cur=ns6? cur.parentNode : cur.parentElement
}

if (iscontained){
var foldercontent=ns6? cur.nextSibling.nextSibling : cur.all.tags("UL")[0]
if (foldercontent.style.display=="none"){
foldercontent.style.display=""
cur.style.listStyleImage="url(open.gif)"
}
else{
foldercontent.style.display="none"
cur.style.listStyleImage="url(fold.gif)"
}
}
}

if (ie4||ns6)
document.onclick=checkcontained

//-->
</script>

<body>

<table cellspacing="0">
<tr>
<td id="mainmenu">
<li id="foldheader"><font face="Verdana">
<{foreach item=category from=$block.categories}>
<{$category.categoryLink}></font></li>

<ul id="foldinglist" style="display: none"; class="foldinglist" >

<li><{if $category.items}>
<{foreach item=item from=$category.items}>
<{$item.titleLink}> </li></ul>
<{/foreach}>
<{/if}>
<{/foreach}>
</td>
</tr>
</table>

</body>
<script language="JavaScript1.2">
<!--

function get_cookie(Name) {

var search = Name + "="
var returnvalue = "";
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
// if cookie exists
if (offset != -1) {
offset += search.length
// set index of beginning of value
end = document.cookie.indexOf(";", offset);
// set index of end of cookie value
if (end == -1) end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset, end))
}
}
return returnvalue;
}

var foldercontentarray=new Array()
var c=0

if (ns6){
for (i=0;i<document.getElementsByTagName("UL").length;i++){
if (document.getElementsByTagName("UL")[i].id=="foldinglist"){
foldercontentarray[c]=document.getElementsByTagName("UL")[i]
c++
}
}
}

if (get_cookie(window.location.pathname) != ''){
var openresults=get_cookie(window.location.pathname).split(" ")
for (i=0 ; i < openresults.length ; i++){
if (ns6){
foldercontentarray[openresults[i]].style.display=''
foldercontentarray[openresults[i]].previousSibling.previousSibling.style.listStyleImage="url(http://noudar.webworks.pt/images/open.gif)"
}
else{
foldinglist[openresults[i]].style.display=''
document.all[foldinglist[openresults[i]].sourceIndex -1].style.listStyleImage="url(http://noudar.webworks.pt/images/open.gif)"
}
}
}

if (ns6||ie4){
var nodelength=ns6? c-1 : foldinglist.length-1
var nodes=new Array(nodelength)
var openones=''
}

function checkit(){
for (i=0 ; i <= nodelength ; i++){
if ((ns6&&foldercontentarray[i].style.display=='')||(ie4&&foldinglist[i].style.display==''))
openones=openones + " " + i
}
document.cookie=window.location.pathname+"="+openones
}

if (ns6||ie4)
window.onunload=checkit
//-->
</script>

I appreciate your help

thx

2
suisss
Re: Smartsection + Block Menu + Javascript
  • 2005/10/17 21:07

  • suisss

  • Just popping in

  • Posts: 45

  • Since: 2004/6/20


Quote:


Login

Who's Online

328 user(s) are online (198 user(s) are browsing Support Forums)


Members: 0


Guests: 328


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Apr 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits