How to open accordion pane with fade transition effect when I click a button? I tried to code it in server side, it is working but there is no fadetransition.
here is my code…
protected void Button1_Click(object sender, EventArgs e)
{
Accordions.FadeTransitions = true;
Accordions.SelectedIndex = 1;
}
You need to switch selected pane on client.
This approach disables server-side client event.