You need to sign in to do that
Don't have an account?
LWC Lightning-Datable rowaction drop down cutoff in scroll
Hi Expert,
I am using Lightning-data-table with rowaction (VIEW, EDIT, DELETE).
but dropdown list cut off. not visible all options, i know solution if height added in class
.slds-scrollable_y, but not able to set height in this class

Can you please assist
How can set
this LWC Quickaction component
I am using Lightning-data-table with rowaction (VIEW, EDIT, DELETE).
but dropdown list cut off. not visible all options, i know solution if height added in class
.slds-scrollable_y, but not able to set height in this class
Can you please assist
How can set
this LWC Quickaction component
Override the class CSS.
Create one separate CSS file and add CSS in that file . Upload that CSS as static resource and load that css using loadStyle.
import { loadStyle } from 'lightning/platformResourceLoader';
connectedcallback() {
Promise.all([
loadStyle(this, resourcePath + '/custom.css');
])
}
I done by this way