Я использую аккордеонный контроль MS AJAX. Он нормально работает, но я не могу заставить его работать с UpdatePanel. Мой макет выглядит так:
<div id="accordion">
<div><a href="#">Header1</a></div>
<div class="acc_content">
<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional" >
<ContentTemplate>
<asp:button id="btnToggle" runat="server" text="toggle"/>
//my repeater contents go here. The buttons within the repeater cause a postback, but changes cannot be seen unless the page is manually refreshed (since the updatepanel doesn't refresh)
</ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="btnToggle" EventName="click" />
<asp:AsyncPostBackTrigger ControlID="btnAdd" EventName="click" /> //this button is outside the updatepanel
</ContentTemplate>
</Triggers>
</asp:UpdatePanel>
</div>
<div><a href="#">Header 2 </a></div>
<div class="acc_content">
Content of the second pane
</div>
</div>
При нажатии на кнопки возникают постбэки, но панель обновления никогда не обновляется и не обновляется. Я пытался добавить UpdatePanel1.Update()
в коде для каждого события обратной передачи, но безуспешно. Есть идеи, почему это происходит?
Спасибо