在 report_path 字段中,我试图使图像路径可点击并将用户传递给图像。
$query = ("select
a.id as id,
a.result,
a.result_date,
a.created_at,
b.employee as 'Created By',
case
when a.in_range='1' then 'IN' else 'OUT'
end as in_range,
case when a.fax='1' then 'YES' else 'NO' end + ' | ' +
case when a.email= '1' then 'YES' else 'NO' end as 'Pending<br>Fax | Email',
report_path as '<a href='' + url + ''>report_path</a>',
result
from " . table('inrult') . " a
left outer join " . table('emp') . " b on a.created_by=b.id
where a.patient_id={$patient->hex} and (a.inactive is null or a.inactive=0) order by result_date desc");
它并不完全按照我想象的方式工作。我究竟做错了什么?
检查元素显示表格行事件链接而不是字段事件链接。
<td onclick="go2("index.php?ae/nic/edit&_id=ACS00&id=5");">_INR\5_2013-03-15.pdf</td>
因此,当我单击该行上的任何位置时,它会转到上面的链接,但我无法为表中的特定字段指定不同的链接...我希望这更有意义。