Click here to Skip to main content
16,016,301 members

Bugs and Suggestions

   

General discussions, site bug reports and suggestions about the site.

For general questions check out the CodeProject FAQs. To report spam and abuse Head to the Spam and abuse watch. If you wish to report a bug privately, especially those related to security, please email webmaster@codeproject.com

 
GeneralExpand all Pin
Simon Walton7-Jun-02 8:48
Simon Walton7-Jun-02 8:48 
GeneralRe: Expand all Pin
Mazdak7-Jun-02 9:11
Mazdak7-Jun-02 9:11 
GeneralRe: Expand all Pin
Simon Walton7-Jun-02 9:22
Simon Walton7-Jun-02 9:22 
GeneralRe: Expand all Pin
Nish Nishant7-Jun-02 14:09
sitebuilderNish Nishant7-Jun-02 14:09 
GeneralRe: Expand all Pin
Shog97-Jun-02 15:00
sitebuilderShog97-Jun-02 15:00 
GeneralRe: Expand all Pin
Nish Nishant7-Jun-02 15:45
sitebuilderNish Nishant7-Jun-02 15:45 
GeneralRe: Expand all Pin
Simon Walton8-Jun-02 4:35
Simon Walton8-Jun-02 4:35 
GeneralRe: Expand all Pin
Humpo8-Jun-02 6:21
Humpo8-Jun-02 6:21 
This bit of code will expand all the threads on the current page(nasty hack)(can't see a simple way to collapse all the threads without changeing the way the doucment is produced - but hey i dont know much html so i could be wrong)


<script>
function Expand()
{
nodes = document.getElementsByTagName("TR");

for(i=0;i<nodes.length;i++)
{
var thisLevel = nodes(i);
if(thisLevel.style.display == "none")
{
thisLevel.style.display = "block";
}
}
}
</script>
<a HREF='JavaScript:Expand();'>Expand</a>
GeneralRe: Expand all Pin
Shog98-Jun-02 7:25
sitebuilderShog98-Jun-02 7:25 
GeneralRe: Expand all Pin
Rama Krishna Vavilala11-Jun-02 4:36
Rama Krishna Vavilala11-Jun-02 4:36 
GeneralRe: Expand all Pin
Shog911-Jun-02 11:12
sitebuilderShog911-Jun-02 11:12 
GeneralRe: Expand all Pin
Rama Krishna Vavilala11-Jun-02 11:20
Rama Krishna Vavilala11-Jun-02 11:20 
GeneralRe: Expand all Pin
Shog911-Jun-02 11:39
sitebuilderShog911-Jun-02 11:39 
GeneralRe: Expand all Pin
Nish Nishant11-Jun-02 17:37
sitebuilderNish Nishant11-Jun-02 17:37 
GeneralRe: Expand all Pin
Nish Nishant11-Jun-02 17:36
sitebuilderNish Nishant11-Jun-02 17:36 
GeneralRe: Expand all Pin
Shog911-Jun-02 17:34
sitebuilderShog911-Jun-02 17:34 
GeneralRe: Expand all Pin
Rama Krishna Vavilala11-Jun-02 17:44
Rama Krishna Vavilala11-Jun-02 17:44 
GeneralRe: Expand all Pin
Shog911-Jun-02 17:48
sitebuilderShog911-Jun-02 17:48 
GeneralRe: Expand all Pin
Rama Krishna Vavilala11-Jun-02 17:58
Rama Krishna Vavilala11-Jun-02 17:58 
GeneralRe: Expand all Pin
Shog911-Jun-02 18:11
sitebuilderShog911-Jun-02 18:11 
GeneralRe: Expand all Pin
Nish Nishant11-Jun-02 18:06
sitebuilderNish Nishant11-Jun-02 18:06 
GeneralRe: Expand all Pin
Shog911-Jun-02 18:03
sitebuilderShog911-Jun-02 18:03 
GeneralRe: Expand all Pin
Michael Dunn8-Jun-02 8:27
sitebuilderMichael Dunn8-Jun-02 8:27 
GeneralRe: Expand all Pin
Nish Nishant11-Jun-02 17:38
sitebuilderNish Nishant11-Jun-02 17:38 
GeneralRe: Expand all Pin
Rama Krishna Vavilala11-Jun-02 5:39
Rama Krishna Vavilala11-Jun-02 5:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.