Click here to Skip to main content
15,903,362 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: AJAX DHTML controls? Pin
BuzzMan879-Nov-08 4:46
BuzzMan879-Nov-08 4:46 
Questionhow to disable copy - print - icons from image Pin
Poonam Gandash30-Oct-08 2:57
Poonam Gandash30-Oct-08 2:57 
AnswerRe: how to disable copy - print - icons from image Pin
Perspx30-Oct-08 3:48
Perspx30-Oct-08 3:48 
QuestionIframe Height Pin
kc_krishnan30-Oct-08 0:54
kc_krishnan30-Oct-08 0:54 
AnswerRe: Iframe Height Pin
Guffa2-Nov-08 18:59
Guffa2-Nov-08 18:59 
QuestionProblem with Apache 2.0. and Subversion Pin
Shravanthi30-Oct-08 0:26
Shravanthi30-Oct-08 0:26 
AnswerRe: Problem with Apache 2.0. and Subversion Pin
LeandroABorges30-Oct-08 1:14
LeandroABorges30-Oct-08 1:14 
QuestionBest way to port a Windows Forms Drawing App to the web Pin
alias4729-Oct-08 19:11
alias4729-Oct-08 19:11 
QuestionHTML >> how to map enter key to a button and special function Pin
nelsig28-Oct-08 20:46
nelsig28-Oct-08 20:46 
AnswerRe: HTML >> how to map enter key to a button and special function Pin
SeMartens28-Oct-08 22:32
SeMartens28-Oct-08 22:32 
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 

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.