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

What's the proper syntax to add an outputLink as a pageBlockTable column?
Hi all,
Is it possible to add an outputLink as a column within a table? If so, how can this be achieved?
Thanks in advance.
<apex:pageBlockTable value="{!entries}" var="entry">
<apex:column headerValue="Action">
<apex:outputLink value="/{!entry.id}">View</apex:outputLink>
</apex:column>
...
[etc]
All Answers
<apex:pageBlockTable value="{!entries}" var="entry">
<apex:column headerValue="Action">
<apex:outputLink value="/{!entry.id}">View</apex:outputLink>
</apex:column>
...
[etc]