Hello. I use java asana client and I need to post a table with data in the commentary for a task. I managed to do this via api:
asanaClient.tasks.addComment(taskGid).data("html_text", <body><table> <tr><td>Name</td><td>Status</td><td>Details</td></tr></table></body>)
Everything works fine and I manage to create a table, but I need to make the right column larger than the others. It is possible to resize columns when I create a table in the web interface. Is it possible to do so via API?
I tried to make the table 100% wide and used such approaches as: <table width=100%>
and <table style="width: 100%">
. None of them worked out. The table still looks like this: