Skip to content

Archive Trac docs fields details

madscatt edited this page Jun 20, 2026 · 1 revision

Docs Fields Details

Legacy Trac archive page imported from docs_fields_details. Source: https://genapp.rocks/wiki/wiki/docs_fields_details. Review age, links, and examples before treating as current.

details for job manager listing

  • requires genapp git php7designer or newer
  • in directives.json to activate the display of details in the job manager
           ,"jobdetails" : "true"
  • add this bit for details to module json fields for each field whose value you wish to include in the details:
           ,"details"      : {
                "prefix"    : "some prefix"
                ,"suffix"   : "some suffix"
                ,"valuemap" : {
                    "c1"    : "text for c1"
                    ,"c2"   : "text for c2"
                }
                ,"position" : 1
            }
  • all fields are optional, e.g. this will also work:
           ,"details"      : {}
  • position determines the order of concatenation of field values
    • should be a non-negative integer value
    • without position, concatenation will be in field order (the order in the fields array in the module json)
  • valuemap maps field values to alternate text

limitations

  • details will not currently work when the field is under a repeater

possible improvements

  • support for regex value substitution

Clone this wiki locally