Edgewall Software

Changes between Version 19 and Version 20 of TicketQuery


Ignore:
Timestamp:
Jul 16, 2018, 6:11:03 AM (6 years ago)
Author:
Ryan J Ollos
Comment:

Content moved from TracQuery@56.

Legend:

Unmodified
Added
Removed
Modified
  • TicketQuery

    v19 v20  
    149149  [[TicketQuery(milestone=0.12.8&group=type,format=progress)]]
    150150
     151=== Format: table
     152
     153You can choose the columns displayed in the table format (`format=table`) using `col=<field>`. You can specify multiple fields and the order they are displayed by placing pipes (`|`) between the columns:
     154{{{
     155[[TicketQuery(max=3,status=closed,order=id,desc=1,format=table,col=resolution|summary|owner|reporter)]]
     156}}}
     157
     158This is displayed as:
     159[[TicketQuery(max=3,status=closed,order=id,desc=1,format=table,col=resolution|summary|owner|reporter)]]
     160
     161==== Full rows
     162
     163In ''table'' format you can specify full rows using `rows=<field>`:
     164{{{
     165[[TicketQuery(max=3,status=closed,order=id,desc=1,format=table,col=resolution|summary|owner|reporter,rows=description)]]
     166}}}
     167
     168This is displayed as:
     169[[TicketQuery(max=3,status=closed,order=id,desc=1,format=table,col=resolution|summary|owner|reporter,rows=description)]]
     170
    151171----
    152172See also: TracQuery, TracTickets, TracReports, TracGuide