Question
Areteans
Areteans
GB
Areteans
Posted: Aug 12, 2025
Last activity: Aug 17, 2025
Last activity: 17 Aug 2025 22:40 EDT
The "Updating Date. Please wait" message is displayed for a long time during Bulk Assignment In constalltion
User Open popup to bulk transfer .and click on (x) icon. again open it click on bluk transfer button getting the message The "Updating Date. Please wait" message is displayed for a long time during Bulk Assignment.
Screen is keep on loading
@sayantis0987
The popup holds on to stale client state when you close it with X and reopen, so the busy overlay never clears. Make the dialog use a temp page (not the work page) and on open, reload its data page with Reload once per interaction. On the close action (X and Cancel), add actions: Close modal → Run data transform to clear the temp page → Reload the list view. Also add an action on open to explicitly Invalidate/Reload any D_… data pages used by bulk transfer. On the Bulk transfer button, disable after first click and show a toast, then refresh the list (don’t keep the modal open waiting on the server). If transfer runs via a queue processor, let the UI return immediately and just refresh the grid. Finally, check browser dev tools: if you see a pending XHR from the first open, you’ve confirmed the stale request; your invalidation + disable-after-first-click will stop the repeat spinner.