#2858 - Bulk Edit - The Ability To Remove Tags, Connections Or Options#2892
Conversation
kodinkat
commented
Feb 17, 2026
- Bulk Edit. The ability to remove a tag, connection, or option #2858
- Implemented conditional removals for 'key_select' and 'user_select' fields during updates, improving data integrity.
- Added logic to handle removal operations for multi-select, tags, and connection fields, ensuring accurate payload generation.
- Refactored typeahead initialization to destroy existing instances before re-initialization, enhancing user experience.
- Introduced a new utility function to retrieve option labels for field values, improving code maintainability.
…-connections-options
PR Review: Bulk Edit - Remove Tags, Connections, or OptionsGood feature addition that improves bulk edit UX by consolidating the clear/restore buttons into a single toggle and supporting selective value removal. Here are some issues worth addressing before merge: Bug: Event Listener AccumulationFile: In modeToggle[0].addEventListener('change', function () {
handleModeToggleChange(this);
});The previous clear/restore buttons used jQuery delegated events ( Consider switching to a delegated event via Performance: Extra API Call Per Record for
|