I have two accordion.
Accordion 1 : Router Info(contains gridRouter)
Accordion 2 : UNC Info(contains gridUNC)
If the gridRouter contains 2 records and gridUNC contains 30 records, the accordion 1 takes space for 30 records (not for 2 records)
As of jQuery UI 1.10 the 'autoHeight'
attribute has been deprecated. To achieve the same effect in the new version use heightStyle: "content"
See an example: http://jqueryui.com/accordion/#no-auto-height
you should use
$("#accordion").accordion({
heightStyle: "content"
});
It will set height according to your content. and will not use blank space as height.
Try setting the autoHeight
property to false
. See http://jqueryui.com/demos/accordion/#options.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With