function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Chenna4a2Chenna4a2 

Open in new window

Hi All,

When i click on this link it should open in new window or tab......

 

<apex:column >
<apex:outputLink value="/{!service.serviceContract.Service_Asset__c}">{!service.sodo.Products__r.Name}</apex:outputLink>
</apex:column>

 

 

Best Answer chosen by Admin (Salesforce Developers) 
pumbaapumbaa

It should just open in the current page which is targe = "_self".

 

Please refer to the document http://www.salesforce.com/us/developer/docs/pages/Content/pages_compref_outputLink.htm

and look for "Target" attribute.

 

cheers,

Ricky

 

All Answers

pumbaapumbaa

It should just open in the current page which is targe = "_self".

 

Please refer to the document http://www.salesforce.com/us/developer/docs/pages/Content/pages_compref_outputLink.htm

and look for "Target" attribute.

 

cheers,

Ricky

 

This was selected as the best answer