Disable input item in ListViewComponent

Hi,
I am currently working with the List View component to display a list of input fields for user entry. However, I encountered an issue where it seems that disabling a single input field within the List View is not supported.

Are there any solutions or workarounds to enable disabling an input item within the List View component?

Thank you for your assistance!

Try a ternary operator - {{ item.role === 'Editor' ? false : true }}

Screenshot 2024-11-08 at 5.02.41 AM

Screenshot 2024-11-08 at 5.00.44 AM

1 Like

@matth thank you