Difference between revisions of "Expandable.php"
m |
m |
||
Line 10: | Line 10: | ||
var heading = document.getElementById("expandable-heading-"+id); | var heading = document.getElementById("expandable-heading-"+id); | ||
var content = document.getElementById("expandable-content-"+id); | var content = document.getElementById("expandable-content-"+id); | ||
− | |||
if (content.style.display == "none") { | if (content.style.display == "none") { | ||
content.style.display = "block"; | content.style.display = "block"; | ||
Line 30: | Line 29: | ||
<a href="javascript:toggleExpandable('.$i.')">[<span id="showlink">show</span><span id="hidelink" style="display:none;">hide</span>]</a> | <a href="javascript:toggleExpandable('.$i.')">[<span id="showlink">show</span><span id="hidelink" style="display:none;">hide</span>]</a> | ||
</td></tr> | </td></tr> | ||
− | <tr style="display: | + | <tr id=expandable-content-'.$i.' style="display:none;"><td colspan=2> |
− | <table class=expandable-content | + | <table class=expandable-content>'.$matches[2].' |
</td></tr></table>'; | </td></tr></table>'; | ||
} | } |
Revision as of 01:31, 2 October 2006
<? if ($GLOBALS['action'] == 'view') {
# Insert a JS function into the page to be called when show/hide links are clicked $article = preg_replace( '/(<\\/head\\s*>)/', '<script type="text/javascript">
function toggleExpandable(id) { var heading = document.getElementById("expandable-heading-"+id); var content = document.getElementById("expandable-content-"+id); if (content.style.display == "none") { content.style.display = "block"; } else { content.style.display = "none"; } }
</script>$1',
$article );
# Callback function executed for rendering each expandable table function expandableCallback($matches) { $i = ++$GLOBALS["$title/tbl-count"];
return '
'.$matches[1].' |
<a href="javascript:toggleExpandable('.$i.')">[show ]</a> |