Results 1 to 2 of 2

Thread: Passing a value from a list

  1. #1
    Join Date
    Jan 2009
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Passing a value from a list

    Hi Folks,

    I am trying a simple application similar to the below links.

    http://www.devx.com/getHelpOn/10Minu...ion/16372/1954
    http://www.mredkj.com/tutorials/tutorial007.html

    My Issue is when i select one or multiple value(s) from the list and select the right arrow button it is deleting from the first list.but i dont want to be deleted.can you please help me out.thanks

    thanks and regards,
    Bharath

  2. #2
    Join Date
    Feb 2008
    Location
    Cebu City Philippines
    Posts
    1,160
    Thanks
    17
    Thanked 277 Times in 275 Posts

    Default

    Let me take for example the script here:
    http://www.mredkj.com/tutorials/tutorial007.html

    Just remove highlighted:
    Code:
    if(theSelFrom.options[i].selected)
    {
    selectedText[selectedCount] = theSelFrom.options[i].text;
    selectedValues[selectedCount] = theSelFrom.options[i].value;
    deleteOption(theSelFrom, i);
    selectedCount++;
    }
    Learn how to code at 02geek

    The more you learn, the more you'll realize there's much more to learn
    Ray.ph!

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
  •