I am following the REST-ful tables documentation in my plugin and trying to show editable table in issue view screen ( atl.jira.view.issue.left.context UI location). But somehow I am not be able to get the editable table.
I tried with non-editable Tables and I can get the table in the same UI location. Attached for reference.
Does REST-ful tables work in atl.jira.view.issue.left.context UI location ?
Any suggestions for getting editable tables on issue view screen is greatly appreciated.
Hi @klkumar143,
have you added required web-resource dependency for that AUI component?
com.atlassian.auiplugin:aui-restfultable
Which template engine do you use for your issue view module?
- for
vm
perhaps the quickest way to require AUI web-resource is to put in your vm
:
$webResourceManager.requireResource('com.atlassian.auiplugin:aui-restfultable')
- for
soy
you can try
{webResourceManager_requireResource('com.atlassian.auiplugin:aui-restfultable')}
Cheers,
Jira team
I resolved this issue. There was a silly mistake of misspell in my webresource. I forgot to respond back here. Thanks for your reply @mrzymski
Cheers!