Search

You searched for the word(s): userid:867956

Matching Posts

  • Re: Checkbox Validation - Best Solution

    Here's a solution that I used in a recent website: Since the asp : CustomValidator does not accept an asp : CheckBox as the control to validate, the first step is to set it to any other control in the page (e.g. a textbox). The second step is to write a bit of JavaScript (JQuery) to return the non-checked state of the checkbox to validate. Below, I am showing a JavaScript variable being set, that is for use by the JavaScript method. < script type ="text/javascript"> var controlID1
    Posted to FAQ - Frequently Asked Questions (Forum) by nalinbc on 5/5/2009
    Filed under: CustomValidator CheckBox Checked
  • Re: RadioButtonList.SelectedIndexChanged as UpdatePanel Trigger

    I initially had the same problem, but was able to solve it using the following: 1. Set the AutoPostBack property to 'True' in the radiobuttonlist control. < asp : RadioButtonList ID ="RadioButtonListLevel" runat ="server" onselectedindexchanged ="RadioButtonListLevel_SelectedIndexChanged" AutoPostBack ="True"> 2. In the triggers collection, added the radiobuttonlist control and selectedindexchanged as the event < Triggers > < asp : AsyncPostBackTrigger
    Posted to ASP.NET AJAX UI (Forum) by nalinbc on 5/2/2009
    Filed under: UpdatePanel RadioButtonList Triggers SelectedIndexChanged
Page 1 of 1 (2 items)