Click here to Skip to main content
15,889,876 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: HTML >> how to map enter key to a button and special function Pin
nelsig28-Oct-08 22:52
nelsig28-Oct-08 22:52 
GeneralRe: HTML >> how to map enter key to a button and special function Pin
SeMartens28-Oct-08 23:04
SeMartens28-Oct-08 23:04 
GeneralRe: HTML >> how to map enter key to a button and special function Pin
nelsig28-Oct-08 23:11
nelsig28-Oct-08 23:11 
QuestionImplementing a Wysiwyg editor into a ASP website Pin
dboy22128-Oct-08 13:15
dboy22128-Oct-08 13:15 
AnswerRe: Implementing a Wysiwyg editor into a ASP website Pin
Ashfield29-Oct-08 22:23
Ashfield29-Oct-08 22:23 
AnswerRe: Implementing a Wysiwyg editor into a ASP website Pin
Jörgen Andersson30-Oct-08 0:02
professionalJörgen Andersson30-Oct-08 0:02 
GeneralRe: Implementing a Wysiwyg editor into a ASP website Pin
dboy22130-Oct-08 4:34
dboy22130-Oct-08 4:34 
QuestionRadio Buttons in a Modal popup not updating checked status Pin
Broken Bokken28-Oct-08 3:46
Broken Bokken28-Oct-08 3:46 
I'm using the 3.5 version of ajax. I have a panel set tp be a modal popup, and inside I have a few radio buttons, a text box for a comment, and a button. The button submits fine, but the radio buttons are not retaining their checked value. I can set the selected value and it shows it as selected when the popup appears, but if I click any of the radiobuttons, none of them show as selected. If I click the botton, the checked property is false for all of them.

HTML
<asp:Panel ID="panelOutcomePopup" CssClass="OutcomePopup" runat="server" style="display:none;">
<div class="PopupHeader">
    <table width="100%" cellspacing="2px" cellpadding="2px">
        <tr>
            <td>
                Record Outcome
            </td>
        </tr>
    </table>
</div>
<div class="PopupContent">
<div>Select the outcome below and enter a comment </div>
<asp:UpdatePanel ID="updatePanelErrors" runat="server">
<ContentTemplate>
<div><asp:ValidationSummary ID="validationSummary" runat="server" HeaderText="The following error(s) occurred:"
                DisplayMode="BulletList" CssClass="ErrorBox"></asp:ValidationSummary></div><br />


<olympus:MultiValidator ID="multivalidator" runat="server" />


</ContentTemplate>
</asp:UpdatePanel>

<asp:UpdatePanel ID="updatePanelOutcomes" runat="server">
<ContentTemplate>

<div><asp:RadioButtonList ID="radioButtonListOutComes" runat="server" /></div>

<div><asp:RadioButton ID="radioButtonAdministered" Checked="true" runat="server" 
        GroupName="OutcomeGroup" Text="Administered Successfully" /></div><br />

<div><asp:RadioButton ID="radioButtonRefused" runat="server" GroupName="OutcomeGroup" 
        Text="Patient Refused" /></div><br />

<div><asp:RadioButton ID="radioButtonDropped" runat="server" GroupName="OutcomeGroup" 
        Text="Dropped" /></div><br />

<div><asp:RadioButton ID="radioButtonOther" runat="server" GroupName="OutcomeGroup" 
        Text="Other" /></div><br />

<div>Comment</div>
<div><asp:TextBox ID="textBoxComment" runat="server" TextMode="MultiLine"></asp:TextBox></div><br />

<div><asp:Button ID="buttonRecord" runat="server" Text="Record Outcome" 
        onClick="buttonRecord_Click" /></div>

</ContentTemplate>
</asp:UpdatePanel>
</div>
</asp:Panel>

<ajaxToolkit:ModalPopupExtender ID="modalPopupOutcome" runat="server" BehaviorID="modalPopupOutcome" BackgroundCssClass="modalBackground" 
TargetControlID="panelOutcomePopup" PopupControlID="panelOutcomePopup" />


I do not want the radio buttons to perform postback because it causes the modal popup to hide.

Any ideas?

Broken Bokken

Broken Bokken

You can't carry out a ninja-style assasination dressed as an astronaut. It's the luminous fabric; too visible. - Tripod

The story of your fighting is a poem of two words: YOU SUCK.

AnswerRe: Radio Buttons in a Modal popup not updating checked status Pin
Paddy Boyd28-Oct-08 4:22
Paddy Boyd28-Oct-08 4:22 
GeneralRe: Radio Buttons in a Modal popup not updating checked status Pin
Broken Bokken28-Oct-08 6:31
Broken Bokken28-Oct-08 6:31 
AnswerRe: Radio Buttons in a Modal popup not updating checked status Pin
Broken Bokken28-Oct-08 8:33
Broken Bokken28-Oct-08 8:33 
Questionheavy weight Grid services and light weight Grid services Pin
aref8727-Oct-08 11:57
aref8727-Oct-08 11:57 
AnswerRe: heavy weight Grid services and light weight Grid services Pin
Ashfield28-Oct-08 9:27
Ashfield28-Oct-08 9:27 
GeneralRe: heavy weight Grid services and light weight Grid services Pin
aref8728-Oct-08 11:28
aref8728-Oct-08 11:28 
GeneralRe: heavy weight Grid services and light weight Grid services Pin
Ashfield29-Oct-08 3:10
Ashfield29-Oct-08 3:10 
Question[Message Deleted] Pin
ravik_umar26-Oct-08 23:15
ravik_umar26-Oct-08 23:15 
AnswerRe: image capturing in web application using struts???? Pin
Johnny ²27-Oct-08 21:35
Johnny ²27-Oct-08 21:35 
Questionjavascript parent iframe access problem Pin
umeshdaiya26-Oct-08 22:32
umeshdaiya26-Oct-08 22:32 
QuestionHow to create a ErrorProvider in Web Form? Pin
meki_211826-Oct-08 20:41
meki_211826-Oct-08 20:41 
AnswerRe: How to create a ErrorProvider in Web Form? Pin
Eduard Keilholz27-Oct-08 22:42
Eduard Keilholz27-Oct-08 22:42 
Questionuse of ajax in asp.net Pin
indukala24-Oct-08 22:18
indukala24-Oct-08 22:18 
AnswerRe: use of ajax in asp.net Pin
Shyam Bharath27-Oct-08 1:39
Shyam Bharath27-Oct-08 1:39 
AnswerRe: use of ajax in asp.net Pin
leckey27-Oct-08 10:06
leckey27-Oct-08 10:06 
GeneralRe: use of ajax in asp.net Pin
Paul Conrad29-Oct-08 8:01
professionalPaul Conrad29-Oct-08 8:01 
AnswerRe: use of ajax in asp.net Pin
Aman Bhullar3-Nov-08 23:43
Aman Bhullar3-Nov-08 23:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.