You are here:
Get Started with Gift Entry Grid Customization in Nonprofit
Custom Lightning web components must meet specific requirements before the Gift Entry Grid can use them as post-processing modals, column modals, or column components.
| REQUIRED EDITIONS |
|---|
| Available in: Lightning Experience |
Available in: Enterprise, Performance, Unlimited, and Developer Editions with Education Cloud Available in: Enterprise, Unlimited, and Developer Editions with Nonprofit Cloud |
The Gift Entry Grid supports custom Lightning web components in these areas:
- Post-processing modal for single gift entry
- Column modals
- Cell Display component on the Component column type
- Cell Edit component on the Component column type
To make a Lightning web component available in the Gift Entry Grid, make sure its
js-meta.xml file meets these requirements:
- Set
<isExposed>to true. - No configured components.
Use this example as a guide to set up a js-meta.xml file:
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>66.0</apiVersion>
<isExposed>true</isExposed>
<masterLabel>Gift Entry Tribute Post Save</masterLabel>
<description>Creates a GiftTribute record as a post-processing step for Single Gift Entry</description>
</LightningComponentBundle>

