Bulk Edit / Quick Edit fields not clickable when using Modern sorting engine
-
Hello,
I found a compatibility issue with the plugin when using the sorting engine:
Modern — smooth animation, touch & keyboard support, save feedback (recommended)On the WordPress admin post/product list page (
wp-admin/edit.php), when opening the Bulk Edit row or Quick Edit row, form fields such as<input>and<select>do not respond to a normal left mouse click.The symptoms are:
- Text inputs cannot be focused with left click.
- Select dropdowns do not open with left click.
- The same fields still react to right click.
- Keyboard interaction may still work once focus is somehow obtained.
- Disabling SCPOrder, or switching away from the Modern sorting engine, fixes the issue immediately.
This happens in the standard WordPress list table interface, especially with Bulk Edit / Quick Edit rows.
It looks like the Modern sorting engine may be attaching mouse / pointer / drag handlers too broadly on the admin list table, possibly intercepting
click,mousedown,pointerdown, or preventing default behavior on interactive fields inside inline edit rows.Expected behavior:
Interactive fields inside WordPress Bulk Edit / Quick Edit should remain fully clickable and usable, even when custom post ordering is enabled.Suggested areas to check:
- Event handlers bound to
document,body,.wp-list-table,tbody,tr, or list table rows. - Generic
preventDefault()/stopPropagation()calls during drag initialization. - Excluding native interactive controls from sortable handling, such as:
input, select, textarea, button, a, label, option, .inline-edit-row, .bulk-edit-row- Making sure drag/sort behavior is not initialized on WordPress inline edit rows.
Environment:
- WordPress admin page:
wp-admin/edit.php - Feature affected: Bulk Edit / Quick Edit
- Plugin setting causing the issue:
Modern — smooth animation, touch & keyboard support, save feedback (recommended) - Workaround: switch to another sorting engine or disable SCPOrder.
Could you please check whether the Modern engine can ignore WordPress inline edit / bulk edit fields?
Thank you.
You must be logged in to reply to this topic.