Hi!
I need help deleting a record. When I choose a data source, all of them are unavailable.
Hi!
I need help deleting a record. When I choose a data source, all of them are unavailable.
Hi,
As the warning states, data resources are unavailable in composite component isolation mode. So within a composite component you are not able to access variables outside of the component, like data variables and resources. Instead, you can add a property to the composite component (while in isolation mode, switch to the properties tab) and add for example data_to_delete
text type property. Then, you can bind that screenshotted Resource name to that property, and when exiting the isolation mode set the wanted data source as the data_to_delete
property to the composite component.
Thank you so much, Cecilia.