Highlight and click on row problem
Hi, I am trying to implement functionality so that when the user puts the mouse on a report row, the row will be highlighted and when the user clicks on that a nother page with the record details is displayed. I have got it working using a named column report template with the following in the row template 1
<tr style="cursor: hand; cursor: pointer;" onmouseover="row_mouse_over(this, 1)" onmouseout="row_mouse_out(this, 1)" #HIGHLIGHT_ROW# onclick=window.location="f?p=&APP_ID.:9:&SESSION.::::P9_SINGLE,P9_REFNO:Y,#HOU_REFNO2#">
<td class="t15data" #ALIGNMENT#>#HOU_REFNO#</td>
<td class="t15data" #ALIGNMENT#>#D_SURNAME#</td>
<td class="t15data" #ALIGNMENT#>#D_PREFIX#</td>
<td class="t15data" #ALIGNMENT#>#D_FORENAME#</td>
<td class="t15data" #ALIGNMENT#>#STARTDATE#</td>
<td class="t15data" #ALIGNMENT#>#ENDDATE#</td>
<td class="t15data" #ALIGNMENT#>#D_TCY_CUR_IND#</td>
</tr>
The problem that I have is that the last column (d_tcy_cur_ind) is a checkbox and I do not want to be taken to the detail page if I tick the checkbox.
Does anyone know of a way to turn the onclick functionality off for the last column?
Andy.