Menu

#3 Missing Javascript files

open
nobody
None
5
2007-03-08
2007-03-08
No

well first when trying to add a new operator, if i click on "Help on Access Rights" I get a javascript error saying "makeVisible is not defined" so i opened operators.php and found that it includes a javascript file called hideshow.js so i wen to the javascript folder and there is only another folder inside there no javascript files.

So I am assuming that the javascript files did not get packages in the zip file.

I was able to fix this by creating a file inside of javascript called hideshow.js and it contained the following:

function makeVisible( id ) {
document.getElementById( id ).style.display = '';
}

function makeInvisible( id ) {
document.getElementById( id ).style.display = 'none';
}

This solved that problem, and I am going to assume that the whatissaid error that everyone is having as well has to do with these missing files, so if someone could create another zip file and post it on source forge that would be great.

Thanks guys.

Discussion


Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.