I am using Embedded Data to display data in a grid. My requirement is to delete all the uploaded data from the grid, which could contain around 200 to 500 records.
Please suggest..
I am using Embedded Data to display data in a grid. My requirement is to delete all the uploaded data from the grid, which could contain around 200 to 500 records.
Please suggest..
If the grid is backed by an Embedded Data list, the recommended approach is to clear the underlying embedded Page List on the case in one server-side action, rather than trying to delete 200–500 rows one by one from the table UI. In Constellation, this should be implemented through a supported view/action pattern such as post-processing or refresh data transform logic.
e.g.: add a ‘Clear All’ action, invoke a Data Transform or flow action post-processing step, remove the entire embedded list property from the case page, save the case, and let the view refresh from the updated data. This is much more efficient for large volumes and avoids the common issue where rows disappear from the UI temporarily but reappear after refresh because the real source list was never cleared.
I assume it is Constellation.
When yo want to clear this data on submit of assignment of shall it be triggered by user?
@MarcCheong This is interesting! Thanks for sharing!