Note #2025-04-15-001
> Reply to Issues · unmonoqueteclea/jira.el · GitHub
Show custom fields in issues list and detail pages
Is there a way to show additional custom field information in the issues list table and in the issue detail page?
Note that custom fields can be of type string/datetime/user/link etc.
Syndicated to:
Interactions
I'm still figuring out how to expose this through the configuration. It's on my TODO list, but I’m not sure when I’ll get to it. In the meantime, here’s some information about how it currently works: - The
jira-fields
variable holds the data for all custom fields. It's automatically populated when you open the issues list. - Thejira-issues-fields
variable (defined injira-utils.el
) maps the paths for all fields in use—both custom and standard. You can find examples of custom fields there, each using a formatter function defined injira-fmt.el. For example: ``` (:cost-center . ((:path . (fields (custom "Cost center"))) (:columns . 10) (:name . "Cost Center") (:formatter . jira-fmt-cost-center))) ``` - Finally, you can include that field in the list of fields shown in the issues list, which is already a configurable parameter
jira-issues-table-fields`Thanks, will try it out. Any similar workarounds for issue details pages?