I am using the following code to get an accordion happening:
$(".accordion h2").eq(2).addClass("active");
$(".accordion-content").eq(2).show();
$(".accordion h2").click(function(){
$(this).next(".accordion-content").slideToggle("slow")
.siblings("div:visible").slideUp("slow");
$(this).toggleClass("active");
$(this).sibli...
I've got the accordion working fine on pageload, however upon user interaction with some elements on the page, I am using ajax to rebuild the HTML of the accordion. Then, I try to re-initialize the accordion again with
$('#accordion').accordion({
active: false,
autoHeight: false,
clearStyle: true,
collapsible: true,
heade...
Hello guys, anyone know a c# winforms accordion control?
preferrably open source or free.
...
Ok, so somewhere, something is wrong. When I was using version 1.3 the accordion was working fine. When I upgraded jQuery to version 1.3.2 it now no longer works as it's supposed to. I need the latest version because it is solving some errors that IE6 was throwing up...
So here's the code, and what needs to change in order for it to wo...
Hello,
I have successfully created a few single accordion drop-downs, but when I go to nest an accordion with an accordion, internet explorer goes nuts (but Firefox, Chrome, etc work just fine for both the single and nested accordion).
Here is an example of the single accordion (fully functional):
<div id="productdd">
<h3><a href="...
Basically, I've set up a DIV in a display:none mode, showed when clicked (simple JS event).
HOWEVER, I tried adding to the non-displayed div a qQuery Accordion; whenever the DIV is shown, the accordion is displayed incorrectly: the H3 tags are scrambled into the text, and the sliding/hiding won't go properly.
Removing the display:none s...
I am currently using the jQuery accordion plugin, and I need to use the treeview plugin within the accordion. However this doesn't work, and it seems to be a known problem (try googling "jquery accordion treeview").
Are there any plugins that might replace treeview but provide me with a similar flexible tree-like navigation behaviour? (...
Hello,
I have an Accordion control to which I have added a datagrid.
The problem is that I cannot set the header of the accordian item that displays the Datagrid.
I can only set the header on the object of the class AccordionItem and not when the Datagrid is added to the Accordion.
I also tried to add the Datagrid to the Accordionite...
Hello,
I can't set the header on a silverlight 3.
I used this code, but every item has the same header "My accordion"
<layoutToolkit:Accordion.ItemTemplate>
<DataTemplate>
<TextBlock Text="My Accordion" />
I need each header to have a different heading.
I can't use accordion item's header property since I have datagrids...
Hey guys,
I've got an accordion which has the first panel opened on default by throwing in:
$("h4#open").trigger('click');
(which triggers the first panel to act as if the h4 link were clicked, and thus opened...)
But this seems to screw up the only way I can think of expanding / collapsing all the panels.
I have this code to expand...
hey folks,
I'm using the fantastic jquery .validate plugin from Jörn Zaefferer at bassistance
I'm using asp.net, so have one long form, though the form is broken up into 3 sections via a jquery accordion with buttons to switch between accordion panes.
I want the button in pane one to validate pane one fields, same with pane two, etc...
Hi
I have a Jquery accordion which works fine. Sections get expanded/collapsed when clicked on respective headers. But I want to add the functionality so that when I click on "next" button it opens up the next section and clicking "Previous" button takes me back to previous section.
This has been done on this page http://jquery.bassi...
Hi,
I am pretty new and got a following problem...
case:
We got an accordion and within this accordion we got an sexy-combo-box
<html>
<head>
<link type="text/css" href="http://jqueryui.com/latest/themes/base/ui.all.css" rel="stylesheet" />
<script src="http://code.jquery.com/jquery-latest.js"></script>
<...
Greetings,
I got the following problem:
On this page (it's /not/ mine, I'm taking it just as an example) you can see under
non-accordion (standard expandable menu)
a ,as the name tells, a standard expandable menu. Now the question that I got:
Is it possible to add by e.g. clicking on a button, to add another menu item, so that in...
Greetings,
I got trapped by following problem:
We got an non-accordion Menu, and within this menu several combo boxes.
The problem is, that actually none of the combo boxes are shown properly (no matter if you use the "traditional" combo boxes, or some fancy sexy-combo, /auto complete combo boxes etc.).
Here the code:
<html xmlns="...
HI all,
I have and issue that looks like it's due to IE's box model bug, but I'm not quite sure how to solve it in dojo.
I have a ContentPane which I put into a typical AccordionContainer, and static content is palced in the ContentPane. On all other browsers, if the content in the ContentPane overflows the bottom, a vertical scrollba...
I have a Linkbutton inside of a DataList, inside of ascx control, which is dynamically loaded into an accordian pane (Done in a server control that inherirts from composite control), which is added to an Accordion, and then displayed. (Each accoridon pane is a different category of items)
The display works fine, it's the event bubbling ...
The goal:
I'm trying to achieve something like this in WPF:
An initial solution:
At the moment, I'm trying to use an ItemsControl with an ItemTemplate composed of an Expander.
I want a consistent look for the Header portion of the Expander, but I want the Content portion of the Expander to be completely flexible. So, it's basical...
Hi Guy,
I am using the Jquery Accordion plugin.
I would like to when the page is loaded open a certain panel.
I am trying to this like so, by identifying it by ID:
selected = $("#1")
$('ul.accordiontasks').accordion( {
autoHeight: false,
active: selected
});
This does not seem to activate the accordion panel with the ID...
Hello,
I am using the accordion from JQuery together with DotNetNuke.
Now the DNN page is loaded into an IFrame dynamicly, so an the Page_load event of the page which includes the IFrame, the IFrame is not filled yet.
<div class="dvFrame">
<iframe class="IFrame" marginheight="0" marginwidth="0" frameborder="0" runat="server...