jQuery UI - Accordion

Max Madjarov
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 4, 2013

Hi,

is it possible to use jQuery UI in confluence custom plugin development? In my case, i try to use jQuery Accordion functionality in my plugin .vm pages. But it is not rendered correctly.

atlassian-plugin.xml:

<resource type="download" name="jquery-ui.css" location="/css/jquery-ui.css" >
            <property key="content-type" value="text/css" />
</resource>
...
<resource type="download" name="jquery-ui.js" location="/js/jquery-ui.js" >
            <property key="content-type" value="text/javascript"/>
</resource>
<resource type="download" name="jquery-1.9.0.js" location="/js/jquery-1.9.0.js" >
            <property key="content-type" value="text/javascript"/>
</resource>
...

"file".js:

AJS.$(document).ready(function() {

    AJS.$("#categorySkillsList").accordion({
        collapsible: true
    });
});

and a VM page it self:

<div id="categorySkillsList">
            #foreach($!category in $!categories)
                <h3>$!category.categoryTitle</h3>
                <div>
                    #foreach($!skill in $!category.skills)
                        <p>$!skill.skillTitle</p>
                    #end
                </div>
            #end
</div>

i can see all .js file and .css files in "batch" files! But <div id="categorySkillsList"> is not rendered like ACCORDION.

Thanks.

2 answers

1 accepted

4 votes
Answer accepted
Max Madjarov
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 7, 2013

To get jQuery UI Elements work in Confluence you have to include following dependency in Web Resource

&lt;dependency&gt;com.atlassian.auiplugin:jquery-ui-other&lt;/dependency&gt;

0 votes
Max Madjarov
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 7, 2013

if the jQuery UI library is in confluence integrated?

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events