You need to sign in to do that
Don't have an account?

How to create link to the record on Vf page pop up?
hello I am tryogn to mkae the record# as the link to the record detail page from VF.Please help:
Below is the part of VF page for that section:
i am tryign to make putReservation as a link:
<apex:pageBlockSection title="Conference Room Reservation" columns="1">
<table>
<tr><td id='firsrTD'> <span class='firstSpan'>Reservation #: </span></td><td><span id='putReservation'></span></td></tr>
<tr><td> <span class='firstSpan'>Meeting Title: </span></td><td><span id='putTitle'></span></td></tr>
<tr><td> <span class='firstSpan'>Reservation status: </span> </td><td> <span id='putStatus'> </span></td></tr>
Below is the part of VF page for that section:
i am tryign to make putReservation as a link:
<apex:pageBlockSection title="Conference Room Reservation" columns="1">
<table>
<tr><td id='firsrTD'> <span class='firstSpan'>Reservation #: </span></td><td><span id='putReservation'></span></td></tr>
<tr><td> <span class='firstSpan'>Meeting Title: </span></td><td><span id='putTitle'></span></td></tr>
<tr><td> <span class='firstSpan'>Reservation status: </span> </td><td> <span id='putStatus'> </span></td></tr>
Wrap the detail inside Apex Outputlink with Target blank attribute. Something like below. Below Code would show Case number on VF page when clicked would open the details. Change the details according to your need.
Let me know if this helps.
Regrds,
Avishek Nanda