CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: PeejAvery

Search: Search took 0.53 seconds.

  1. Replies
    5
    Views
    9,177

    Re: dynamically filling a select option

    There is no value property of a string. So, what you need is...


    <script type="text/javascript">
    function LoadSelect(team) {
    oSelect = document.getElementById("Ugroups");
    ...
  2. Replies
    5
    Views
    9,177

    Re: dynamically filling a select option

    You need to make sure that the parameter you are passing to the JavaScript function is truly an object. If you are just passing a string, then you just use team, and not team.value.

    Also, I would...
  3. Replies
    5
    Views
    9,177

    Re: dynamically filling a select option

    JavaScript does not support the following...


    msgbox "in LoadSelect";
    In JavaScript, you must use alert().


    alert("in LoadSelect");
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured