[SalesForce] I don’t see Custom Component in App Builder

I installed a custom component (managed package) from AppExchange but I don't see it in App Builder for a App Page.

Can I solve this problem?
Thanks.

First Image

Second Image

Best Answer

Looking at the screenshot and searching for the Lightning Tree component in appexchange led me to this github source for the component

It seems to be an open source reusable component that you can include in your apps via code (look at this sample). but the component is not implementing any of the interfaces by default to enable it to be used in the app builder or lightning actions or community builder etc..

you can edit the component code in your org and make it implement the interface flexipage:availableForAllPageTypes for it to appear in the App builder..

you can go thru this article for details on how to enable components for App builder.

Related Topic