[SalesForce] How to place a Custom Button on list view (Lightning)

I have created a Lightning Quick Action with a custom aura component to do some async processing over all records.
But I cannot find a way to place that button on List View in lightning. I have read other SE articles but that seems few years old. So not sure if it is still not possible.

I know that Custom Button shows up, but then I have to wrap this up in VFpage or create a VF page remote action completely.

Is there a way to display the Action on list view?

Best Answer

You can't, you still have to use a Visualforce page with standard list controller and pass the records to the aura component using lightning out, as explained in Custom List view buttons in the lightning environment - this feature request is on the roadmap, but I don't know when it will be delivered.

Here you have a sample implementation of how to do it.

Related Topic