Gossamer Forum
Home : Products : Gossamer Forum : Discussion :

Re: [CRUZN8R] Bug?

Quote Reply
Re: [CRUZN8R] Bug? In reply to
Hi,

Sorry - I should have posted the fix.
If you find the line

<%GForum::Post::icons('with blank')%>

in the include_post_html_common_write template, you need this javascript below it:

<script language="Javascript">
<!--
// This handles the tabing - if you change the selection, the tabIndex needs to
// be changed as well so that we don't have to tab through all of the icons if
// going through the page with tab
function updateTab (selected_val) {
var col = document.getElementsByName("post_icon");
for (i = 0; i < col.length; i++) {
if (selected_val == col.value)
col.tabIndex = 5;
else
col.tabIndex = 0;
}
}
// -->
</script>

Laura.
Subject Author Views Date
Thread Bug? afinlr 4295 Feb 8, 2004, 10:01 AM
Thread Re: [afinlr] Bug?
Jagerman 4169 Feb 10, 2004, 12:25 PM
Thread Re: [Jagerman] Bug?
afinlr 4190 Feb 10, 2004, 12:35 PM
Thread Re: [afinlr] Bug?
CRUZN8R 4140 Feb 13, 2004, 6:54 PM
Thread Re: [CRUZN8R] Bug?
afinlr 4137 Feb 14, 2004, 4:26 AM
Post Re: [afinlr] Bug?
CRUZN8R 4116 Feb 14, 2004, 9:01 AM
Post Re: [afinlr] Bug?
Jagerman 4084 Feb 17, 2004, 5:17 PM