Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. jmro20

    Javascript Filled DropdownList gets Cleared on PostBack

    Thanks, that solve the issue!!
  2. jmro20

    Javascript Filled DropdownList gets Cleared on PostBack

    Hi, I have a dropdown list that I add the items from javascript depending on a selection made on a radiobuttonlist. The problem is that when the user clicks a button that do a PostBack, when the page reload the dropdownlist items are gone. I am new to javascript and I don't know how to control...
  3. jmro20

    Unchecked RadioButtonList with Javascript

    I use this code and now is working, I treat the radiobuttonlist as a table that contains the radiobutton: In the pageLoad Event I have: dim s = New System.Text.StringBuilder s.AppendLine("ClearRadioButton(document.getElementById('" & rb_MAX.ClientID.ToString & "'));}")...
  4. jmro20

    Unchecked RadioButtonList with Javascript

    It dosen't work. Also I need to send the radiobuttonlist as a parameter to the JS function because I need to reuse that code for other checkboxes and radiobuttonlists on the content page.
  5. jmro20

    Unchecked RadioButtonList with Javascript

    This is part of my code in my PageLoad Event (I am using a content page inside a master page) s = New System.Text.StringBuilder s.AppendLine("if (document.getElementsByName('" & chkCancer.ClientID.ToString & "').checked == false) {")...
  6. jmro20

    Unchecked RadioButtonList with Javascript

    I have a checkmark that when the user clicked on it if it's checked then a radiobuttonlist is visible. When the checkmark is uncheked the radiobuttonlist is not visible. What I want to do is, when the checkmark get's unchecked if any item of the radiobuttonlist is checked I wanto to unchek it...

Part and Inventory Search

Back
Top