Today I have two questions at once for developing JIRA gadgets:
1. CSS
How can I include a .css file for my gadget. I have some tables and those should have some style. The .css file is already in the atlassian-plugin.xml included like this:
<web-resource key="Web-resources" name="My Web Resources">
<dependency>com.atlassian.auiplugin:ajs</dependency>
<resource type="download" name="MyCSS.css" location="/css/MyCSS.css"/>
<context>jira.general</context>
<context>The_Context</context>
</web-resource>
But how can I use this stylesheet in my gadget? What do I need for this?
2. JavaScript libraries
I also want to include the Chart.js library, also included in the atlassian-plugin.xml. But how to use it in the gadget?
In your gadget.xml file you have to include the resources via the project key and the gadget key and you defined. - the gadget key in your case is "Web-resources" (I recommend you rename it to mygadget-resources) - the project key is defined in your atlassian-plugin.xml file as attribute of element
<atlassian-plugin key="your-project-key">
In your gadget.xml file in the CDATA section inside element Content first require the resource and then include them:
Afterwards you are able to use any css styles you have in MyCss.css and if you add another resource tag for your JS file this will be included too.
That should get you startet.