Link to home
Create AccountLog in
Avatar of Webboy2008
Webboy2008

asked on

asp.net / ajax

Master page:

<cc1:ToolkitScriptManager ID="ToolkitScriptManager1" EnablePartialRendering="true" runat="server">
</cc1:ToolkitScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<div>Banner</div>
asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server"></asp:ContentPlaceHolder> 
</ContentTemplate>
<div>Footer</div> 
 </asp:UpdatePanel>
</form>


aspx:

<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table width="100%">
<tr>
<td colspan="3"><h2>Please Select:</h2></td></tr>
<tr><td>
    <cc1:OboutRadioButton Checked="true" AutoPostBack="true"  FolderStyle="../eServices/UIStyleControls/Obout/Interface/styles/plain/OboutRadioButton" GroupName="MasterPolicyType" Font-Bold="true" Text="Short Term Policy" ID="RdoShortTermPolicy" runat="server">
    </cc1:OboutRadioButton>
     </td>
    <td><br /></td>
    <td>
    <cc1:OboutRadioButton AutoPostBack="true"  FolderStyle="../eServices/UIStyleControls/Obout/Interface/styles/plain/OboutRadioButton" GroupName="MasterPolicyType" Font-Bold="true" Text="Annual Policy" ID="RdoAnnualPolicy" runat="server">
    </cc1:OboutRadioButton>
    </td>
</tr>
</table>
</asp>

Open in new window


When EnablePartialRendering="true" , the radio button or checkbox does not allow me to click.
However, when it is to false, it is working as usual. How to fix it?

Thanks
Avatar of volking
volking

Hmmmm ... I've never tried extending an UPDATE panel from the Master page to a child page. It may (or may not) work as expected. I've always put an update panel on the child page ... and if needed a different one on the MasterPage.

That's my best guess.

Try changing your UpdatePanel declaration

<asp:UpdatePanel ID="UpdatePanel1" UpdateMode="Conditional" runat="server">
Avatar of Webboy2008

ASKER

EndersDev: I tried. the issue is still there.
Use asp scriptmanager insted of ToolkitScriptManager  as below


<asp:ScriptManager ID="ScriptManager1" runat="server">    </asp:ScriptManager>
I did no luck
Can you please upload your code files masterpage, aspx page with cs files?
ASKER CERTIFIED SOLUTION
Avatar of nishant joshi
nishant joshi
Flag of India image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer