Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Highlight and click on row problem

Fintan StackJun 2 2008 — edited Aug 25 2008
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.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 22 2008
Added on Jun 2 2008
10 comments
1,354 views