vote up 0 vote down star

I would like to use this to hide/expand columns:
http://www.fiendish.demon.co.uk/html/javascript/hidetablecols.html
but remove eveything having to do with the form. The java script function must be changed accordingly but I am not having any luck. Any suggestions?
Thanks.

flag

59% accept rate
What do you mean by the 'form'? The checkboxes? How would you toggle the columns otherwise? – Paolo Bergantino Jan 23 at 0:27

2 Answers

vote up 2 vote down check

Code test and works. Feel free to ask questions about it :)

<script language="javascript">

// Set the default "show" mode to that specified by W3C DOM
// compliant browsers

var showMode = 'table-cell';

// However, IE5 at least does not render table cells correctly
// using the style 'table-cell', but does when the style 'block'
// is used, so handle this

if (document.all) showMode='block';

// This is the function that actually does the manipulation

var States = { };

function toggleVis(col){

    if (!States[col] || States[col].IsOpen == null)
    {
        States[col] = {isOpen : true}; // This assumes the cell is already shown
    } 

    mode =  States[col].IsOpen ? showMode : 'none';

    cells = document.getElementsByName(col);
    for(j = 0; j < cells.length; j++) cells[j].style.display = mode;

    States[col].IsOpen = !States[col].IsOpen;
}

</script>

<a href="#" onclick="toggleVis('tcol1'); return false;">Toggle 1</a>
<a href="#" onclick="toggleVis('tcol2'); return false;">Toggle 2</a>
<a href="#" onclick="toggleVis('tcol3'); return false;">Toggle 3</a>
<a href="#" onclick="toggleVis('tcol4'); return false;">Toggle 3</a>

<table border=1>
<tr>
<td name="tcol1" class="bold">column 1 text</td>
<td name="tcol2" >column 2 text</td>
<td name="tcol3" class="italic">column 3 text</td>
<td name="tcol4" >column 4 text</td>
</tr>
<tr>
<td name="tcol1" class="bold">column 1 text</td>
<td name="tcol2" >column 2 text</td>
<td name="tcol3" class="italic">column 3 text</td>
<td name="tcol4" >column 4 text</td>
</tr>
</table>
link|flag
vote up 0 vote down

Thanks! It works great.

Is States[col] syntax read by CSS or JS?
.IsOpen is a JS DOM?

Let me know if I got it right:

mode =  States[col].IsOpen ? showMode : 'none'; <--Set mode to current state opposite of current(shown or hidden)

cells = document.getElementsByName(col); <--Object of specified col
for(j = 0; j < cells.length; j++) cells[j].style.display = mode; <--Set show/hide for each col 

States[col].IsOpen = !States[col].IsOpen; <-- Not sure what this does?
link|flag
Everything inside of the <script> tags are read by JS. Alsol, the isOpen is a custom property that I made by setting it to a value. In JS you can set custom properties/methods to any object weather or not it's in the DOM (just be sure not to overwrite an actual DOM method!) :) – Nelson LaQuet Jan 28 at 23:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.