Transaction report: It would be helpful to have an option to export 1 - the file associated with the transaction 2 - the location (URL) associated with the transaction. Thanks, J.
This was considered, but there were usability problems: clicking a file/URL led to display of file/URL but the back button was broken. As a result this enhancement was not considered ready.
PS you can enable location reporting by adding the following in transaction.scm somewhere in the definition of left-columns around line 1030 onwards. Again it will only work well when the report is exported to HTML and opened using a web browser. + (add-if 'url-column + (vector "" + (lambda (split transaction-row?) + (let ((url (xaccTransGetAssociation (xaccSplitGetParent split)))) + (if (string-null? url) + (gnc:html-make-empty-cell) + (gnc:make-html-text + (gnc:html-markup-anchor url "
Resend, previous was lost due to unicode. + (add-if 'url-column? + (vector "" + (lambda (split transaction-row?) + (let ((url (xaccTransGetAssociation (xaccSplitGetParent split)))) + (if (string-null? url) + (gnc:html-make-empty-cell) + (gnc:make-html-text + (gnc:html-markup-anchor url "url"))))))) I'd mark this bug WONTFIX because it is not usable in common use.
(In reply to Chris from comment #2) > Again it will only work well when the report is exported to HTML > and opened using a web browser. Since the report tabs are a browser, why does it need to be exported and run in a separate browser?
John: I meant the requested behavior of the <a href="xx"> for transaction-file-association in the Gnucash browser. If I enable transaction-association linking in transaction.scm, it can happily display the anchor, however, clicking on it leads to either (1) error for http because the builtin webkit cannot go to outside internet, or (2) webkit display of image... and the latter was not satisfactory because the back button to return to the report doesn't work. If the report is exported then opened in modern browser then the <a href> links work well.
This is fixed and will be in 4.0, the associations will open in there respective default applications.