Hi,
I'm developing a gadget under Jira. Now that it works quite good, I'd like to improve the user experience. I did some research but didn't found:
1) is it possible to add an hourglass or something pretty to my gadget while it is loading? (it doesn't take lots of time, about half a second but it would be prettier with an UI for that part...)
2) is it possible to add some help messages under the fields in the userprefs (you know, the tags like <UserPref name="bla" datatype="string" display_name="bla" />) ? The display name is not enough to be clear about the meaning of a field...
Thank you!
Ok, both comes out of the box when using the Jira-like style of gadget definition:
<dependency>com.atlassian.jira.gadgets:common</dependency> ... <Require feature="views"/> ... <UserPref name="xxx" datatype="hidden" default_value="xxx"/> <UserPref name="isConfigured" datatype="hidden" default_value="false"/> ... <script type="text/javascript"> (function() { AJS.Gadget({ baseUrl: "__ATLASSIAN_BASE_URL__", useOauth: "/rest/gadget/1.0/currentUser", config: { descriptor: function (args) { return { theme: "gdt", fields: [{ userpref: "xxx", label: 'My Xxx', description: 'blabla', type: "textinput", value: gadget.getPref("xxx") }] }; } }, view: { onResizeAdjustHeight: true, enableReload: true, template: function(args) { var gadget = this; this.getView().empty(); }; } }); </script>
Atlassian Government Cloud has achieved FedRAMP Authorization at the Moderate level! Join our webinar to learn how you can accelerate mission success and move work forward faster in cloud, all while ensuring your critical data is secure.
Register NowOnline forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.