Edgewall Software

Changes between Version 1 and Version 2 of 1.5/TracTicketsCustomFields


Ignore:
Timestamp:
May 12, 2020, 8:06:20 PM (4 years ago)
Author:
Ryan J Ollos
Comment:

Document #13213.

Legend:

Unmodified
Added
Removed
Modified
  • 1.5/TracTicketsCustomFields

    v1 v2  
    6262     * `reference` to treat the content as a queryable value
    6363     * `list` to interpret the content as a list of queryable values, separated by whitespace
     64   * ticketlink_query: Query for linkifying ticket values.
     65     Not applicable for format `plain` and `wiki`.
    6466 * '''checkbox''': A boolean value check box.
    6567   * label: Descriptive label.
    6668   * value: Default value, 0 or 1.
    6769   * order: Sort order placement.
     70   * ticketlink_query: Query for linkifying ticket values.
    6871 * '''select''': Drop-down select box. Uses a list of values.
    6972   * label: Descriptive label.
     
    7174   * value: Default value (one of the values from options).
    7275   * order: Sort order placement.
     76   * ticketlink_query: Query for linkifying ticket values.
    7377 * '''radio''': Radio buttons. Essentially the same as '''select'''.
    7478   * label: Descriptive label.
     
    7680   * value: Default value, one of the values from options.
    7781   * order: Sort order placement.
     82   * ticketlink_query: Query for linkifying ticket values.
    7883 * '''textarea''': Multi-line text area.
    7984   * label: Descriptive label.
     
    95100
    96101Macros will be expanded when rendering `textarea` fields with format `wiki`, but not when rendering `text` fields with format `wiki`.
     102
     103For applicable fields, the `ticketlink_query` option
     104overrides [[TracIni#query-ticketlink_query-option|"[query] ticketlink_query"]], and the format is the same as
     105that option. When the `ticketlink_query` option
     106is not specified, `[query]` `ticketlink_query` is used to
     107linkify the field.
    97108
    98109=== Sample Configuration