Results 1 to 2 of 2

Thread: drop down changes pick sets

  1. #1
    Join Date
    Sep 2007
    Posts
    58
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Smile drop down changes pick sets

    i got 5 sets of 20 pickboxes...that's mean i got 5 groups in each group 20 players...

    i'm i search of a script that when one of the 5 groups will be choosen with a dropdown list, a list of all players will apear and there will be option to pich each one of them...with no limit...

    somebody?

  2. #2
    Join Date
    Sep 2007
    Posts
    58
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default ok...people i solved the prob

    Code:
    <SCRIPT LANGUAGE=javascript>
    <!--
    function OnChange(dropdown)
    {
    	var myindex = dropdown.selectedIndex
        var baseURL= "<%=ScriptName%>?<%=ListName%>="
        top.location.href = baseURL + dropdown.options[myindex].value;
        
        return true;
    }
    //-->
    </SCRIPT>
    Last edited by tech_support; 10-04-2007 at 07:47 AM.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •