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
Raghvendra Singh 22Raghvendra Singh 22 

how can we show lightning component in List view

Hi Guys,

How can we show lightning component in List View ?
is there any way ?

Thanks,.
Raghvendra
mukesh guptamukesh gupta
Hi,

Please follow below urls:-

https://www.linkedin.com/pulse/creating-custom-list-view-salesforce-lightning-ajay-prakash-dubey
http://biswajeetsamal.com/blog/salesforce-lightning-listview/

or you can also use this code:-
 
<aura:component implements="force:appHostable" >
 
    <lightning:listView aura:id="listViewAccounts"
                        objectApiName="Account"
                        listName="AllAccounts"
                        rows="5" 
                        showActionBar="false" 
                        enableInlineEdit="true"
                        showRowLevelActions="false" />
    

</aura:component>

if you need any assistanse, Please let me know!!


Kindly mark my solution as the best answer if it helps you.

Thanks
Mukesh

 
Raj VakatiRaj Vakati
You can able to show ightning component in list view as an List view actions .. 
Or if you wanted to build list view also from the beginning use lightning:listView  component .. 
http://www.simplysfdc.com/2018/03/salesforce-list-view-mass-action-in.html

 
ganesh mamidalaganesh mamidala
http://salesforce.stackexchange.com/questions/108323/list-view-in-lightning

please check above link