I want to create a web panel which should display the data in a tabular format. But border shouldn't be appeared. It should display as below,
Release : 2018-1
Fix-version : 2018.3
Test : Testing
Here is the sample script that i used,
def content = '''
<table>
<tr>
<td>Release : ${release}</td>
</tr>
<tr>
<td>Fix-Version : ${version}</td>
</tr>
<tr>
<td>Test : test</td>
</tr>
</table>'''
writer.write(content);
But, It looks like, By default jira would add border even though we don't specific it.
Does anyone know how to create a table without border.
Hi @nallu
I tried your code, and seems like i get it exactly as you want (without border)
So i can't reproduce your case, (maybe this changed in another versions)
But maybe you should try to add styling and say "border: none !important" or something like that, that will force it to be without border
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.