Last active
January 25, 2024 21:02
-
-
Save svierk/4ff1f44cf77d590cd3397e6365eb31da to your computer and use it in GitHub Desktop.
HTML Template for Content Document Table LWC
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<template lwc:if={isLoading}> | |
<lightning-spinner alternative-text="Loading" variant="brand"></lightning-spinner> | |
</template> | |
<template lwc:if={showCard}> | |
<lightning-card icon-name={cardIcon} title={cardTitle}> | |
<c-content-document-table-extension | |
key-field="id" | |
columns={columns} | |
data={documents} | |
onrowaction={handleRowAction} | |
hide-checkbox-column | |
> | |
</c-content-document-table-extension> | |
</lightning-card> | |
</template> | |
<template lwc:else> | |
<c-content-document-table-extension | |
key-field="id" | |
columns={columns} | |
data={documents} | |
onrowaction={handleRowAction} | |
hide-checkbox-column | |
> | |
</c-content-document-table-extension> | |
</template> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment