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
BhavanaBhavana 

contract hyperlink is not available in lightning list view

Hi
Contract name/number in list view doesn't have hyperlink in lightning, so we are not able to open records from list view.
Please help.
Thanks.
Raj VakatiRaj Vakati
Is its the available with the standard behaviout .. Field is the contract Numer . on click of the contract number it will navigate to the record ..

Make sure you are not using any Overrides ..

Can you share the screenshot pls 
Narender Singh(Nads)Narender Singh(Nads)
Hi,

Use this:
<lightning:listView aura:id="listViewAccounts"
    					objectApiName="Contract"
     					listName="AllContracts"
    					showActionBar="false"
    					enableInlineEdit="true"
    					showRowLevelActions="false"/>
Note: In the 'listName' attribute, replace 'AllContracts' with the developer name(ApiName) of your your view.

Let me know if it helps