On the C-sharpcorer site there are litle windows that ca be minimized and restored.
e.g. Latest Articles can be minimized.
I've tried searching but I'm not finding what I'm looking for. Maybe I'm just using the wrong key words.
Are there any articles on how one could go around to do this?
Thanks
NeCroFirePosted Apr 24, 2008, 10:02 AM
Only after removing this if statement (if (typeof ccollect!="undefined")) it worked.
What exactly is this if for?
Thanks
NeCroFirePosted Apr 21, 2008, 3:02 AM
Thanks.
Nipun TomarPosted Apr 21, 2008, 12:44 AM
Put a link like
and add the following function in javascript
function
expandcontent(cid){
if (typeof ccollect!="undefined")
{
if(document.getElementById(cid).style.display!="none")
{
document.getElementById(cid).style.display = "none"
}
else
{
document.getElementById(cid).style.display = "block"
}
}
}
it should probably work..