Changes between Version 8 and Version 9 of TracTicketsCustomFields
- Timestamp:
- Dec 16, 2014, 9:38:04 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracTicketsCustomFields
v8 v9 40 40 * label: Descriptive label. 41 41 * value: Default text. 42 * cols: Width in columns .42 * cols: Width in columns 43 43 * rows: Height in lines. 44 44 * order: Sort order placement. 45 45 * format: Either `plain` for plain text or `wiki` to interpret the content as WikiFormatting. (''since 0.11.3'') 46 47 Macros will be expanded when rendering `textarea` fields with format `wiki`, but not when rendering `text` fields with format `wiki`. 46 48 47 49 === Sample Config === … … 114 116 Note in particular the `LEFT OUTER JOIN` statement here. 115 117 118 Note that if your config file uses an uppercase name, e.g., 119 {{{ 120 [ticket-custom] 121 122 Progress_Type = text 123 }}} 124 you would use lowercase in the SQL: `AND c.name = 'progress_type'` 125 116 126 === Updating the database === 117 127