Edgewall Software

Changes between Initial Version and Version 1 of Ticket #7199, comment 6


Ignore:
Timestamp:
Aug 18, 2014, 12:13:58 AM (10 years ago)
Author:
Ryan J Ollos

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #7199, comment 6

    initial v1  
    11I have run up against this problem too. Any likelihood of this being fixed?
    22
    3 ''My query contains:''\\
    4 status,(CASE status \\
    5 WHEN 'testing (lab)' THEN 'background: orange; color: white'\\
    6 WHEN 'testing (integration)' THEN 'background: !#4EA24E; color: white'\\
    7 WHEN 'closed' THEN 'background: darkgreen; :white; color: white'\\
    8 WHEN 'reopened' THEN 'background: #FF3030; color: white'\\
     3''My query contains:''
     4{{{#!sql
     5status,(CASE status
     6WHEN 'testing (lab)' THEN 'background: orange; color: white'
     7WHEN 'testing (integration)' THEN 'background: !#4EA24E; color: white'
     8WHEN 'closed' THEN 'background: darkgreen; :white; color: white
     9WHEN 'reopened' THEN 'background: #FF3030; color: white'
    910ELSE '' END) AS __style__,
     11}}}}
    1012
    11 ''And returns:''\\
    12 <tr class="even" style="background: !#4EA24E; color: white;">\\
    13  <td class="ticket">...</td>\\
    14  <td class="summary">...</td>\\
    15  <td class="status">...</td>\\
     13''And returns:''
     14{{{#!text/html
     15<tr class="even" style="background: !#4EA24E; color: white;">
     16 <td class="ticket">...</td>
     17 <td class="summary">...</td>
     18 <td class="status">...</td>
    1619
    17 ''When what I really need is:''\\
    18 <tr class="even" >\\
    19  <td class="ticket">...</td>\\
    20  <td class="summary">...</td>\\
    21  <td class="status" style="background: !#4EA24E; color: white;">...</td>\\
     20''When what I really need is:''
     21<tr class="even" >
     22 <td class="ticket">...</td>
     23 <td class="summary">...</td>
     24 <td class="status" style="background: !#4EA24E; color: white;">...</td>
     25}}}