Jump to content

Recommended Posts

Posted

Fix

In check.js replace


if (state)
{
for (i=1; cat[i] != null; i++)
{
if (cat[i]==thisCat)
{
if (!isChecked(i))
{
allChked=false;
break;
}
}
}
}

with


if (state)
{
for (i=1; cat[i] != null; i++)
{
if (cat[i]==thisCat && document.getElementById("chkbox"+i) != null)
{
if (!isChecked(i))
{
allChked=false;
break;
}
}
}
}


Posted

There's also


else //If program checkbox was checked
{
if (!prog[thisChk])
return; //Ensure checkbox exists
thisCat=cat[thisChk].toString();
}

to replace with


else //If program checkbox was checked
{
if (!prog[thisChk] || document.getElementById("chkbox"+thisChk) == null)
return; //Ensure checkbox exists
thisCat=cat[thisChk].toString();
}

or the categories wouldn't be checked at startup

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...