I have multiple ActionLinks defined in the Index View of my MainController.
Html.ActionLink("admin",controller = "Admin",action = “Index”)
Html.ActionLink("customer",controller = "Customer",action = “Index”)
Html.ActionLink("billing",controller = "Billing",action = “Index”)
Those Actionlinks are inside the Jquery accordion control. When I click an actionlink which inside of an expander`s content the related view is rendered on the right contentDIV BUT on the left side the accordion has collapsed the formerly opened content pane and has expanded the initial content pane. Why is that or how can I prevent that?