UPDATE: Sorry - I was being a fool. display:block was left in the style for the div.
I have an ASP.Net page where I build up an HTML string that should be displayed as an accordion. This works, and the page renders the accordion however with all panels expanded.
Is there a way I can reset the panels to all collapsed after the HTML is written?
System.Text.StringBuilder b = new System.Text.StringBuilder();
Condition[] conditions = SearchConditions(searchFor.Text);
b.Append("<div id=\"ac1\" class=\"accordion\">");
foreach (Condition c in conditions)
{
b.Append(" <h2>" + c.ConditionName + "<br /><span style=\"font-size:x-small\">" + c.Information + "</span></h2>" + Environment.NewLine) ;
b.Append(" <div class=\"pane\" style=\"display:block; font-size:x-small\">" + Environment.NewLine);
b.Append(" " + c.ConditionDescription + " <br /><br />" + Environment.NewLine);
if (c.ConditionInstructions.Length > 0)
{
b.Append(" <div class=\"message error\">");
b.Append(" <strong>Important:</strong><br />");
b.Append(" " + c.ConditionInstructions + "");
b.Append(" </div>");
b.Append(" <br />");
}
b.Append(" <a href=\"#\">Add Condition</a>" + Environment.NewLine);
b.Append(" </div>" + Environment.NewLine);
}
b.Append("</div>");
searchResults.Text = b.ToString();
searchResults.Text is an ASP:Literal control on the page.