I just updated a site from DNN 4.7.0 to 4.8.4
After the update my accordions from the ajax control toolkit don't open and close anymore.
Does anyone know why this is happening?
I am using xhtml strict as doctype
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
and here is some code of an accordion:
<ajaxToolkit:Accordion ID="KDAcc4Cat" runat="server" SelectedIndex="-1"
HeaderCssClass="gm_kd_acc3header" Font-Bold="True" HeaderSelectedCssClass="gm_kd_acc3headerselected"
ContentCssClass="gm_kd_acc3content" FadeTransitions="false" FramesPerSecond="40" Enablev13wstat3="True"
TransitionDuration="150" AutoSize="None" RequireOpenedPane="false" SuppressHeaderPostbacks="false" >
<HeaderTemplate>
<asp:Label ID="lblID6" runat="server" Text='<%#DataBinder.Eval(Container.DataItem, "ID")%>' Visible="False"></asp:Label>
»<asp:Label ID="lblAcc3CatHeader" runat="server" CssClass="gm_kd_acc3header" Text='<%#DataBinder.Eval(Container.DataItem, "Naam")%>'></asp:Label>
</HeaderTemplate>
<ContentTemplate>
TEST<br />
</ContentTemplate>
</ajaxToolkit:Accordion>