当我单击按钮时打开 ajax 手风琴窗格


单击

按钮时如何打开具有淡入淡出过渡效果的手风琴窗格?我尝试在服务器端对其进行编码,它正在工作,但没有淡入淡出。

这是我的代码...

protected void Button1_Click(object sender, EventArgs e)
{
        Accordions.FadeTransitions = true;
        Accordions.SelectedIndex = 1;    
}

您需要在客户端上切换选定的窗格。

<asp:Button runat="server" Text="Click Me" OnClientClick="switchPane(1); return false;" />
<script type="text/javascript">
     function switchPane(index) {
          $find("<%= Accordions.ClientID %>_AccordionExtender").set_SelectedIndex(index);
     }
</script>

此方法禁用服务器端客户端事件。

最新更新