Aug 04, 2022 12:38 AM
can i add a table to “long text” field?
i want to add table that include colums " code - description - price" and then in another table at “long text” i want to wrote the code and it automaticly add the row
example:
table 1
code - description - price
“1167 - bike tire - 75”
teble 2:
i put the code 1167 and it write me the all row(“1167 - bike tire - 75”)
Aug 04, 2022 05:23 AM
No. Long text fields cannot display info in table format, not even if rich text is toggled on.
You can sometimes fake a table using code formatting and spaces to line things up, but the result is rarely satisfactory.
Aug 04, 2022 06:51 AM
Nope. But I’m pretty sure a long text field containing a markdown table will render in a script extension as a table.
Using this notation, you can read that from a script extension and simply output the text using output.markdown(<longTextField>)
, and it will render in the sidebar as a nice-looking table. If this approach is practical for your use case, you could also add a button field which would launch your script extension and display the table.
| Syntax | Description |
| ----------- | ----------- |
| Header | Title |
| Paragraph | Text |