Viewing 1 replies (of 1 total)
  • Thread Starter MarcGuay

    (@marcguay)

    It seems like jQuery UI Sortable has some sane defaults that are being overridden…

    https://api.jqueryui.com/sortable/#option-cancel

    For anyone coming across this in the future, it’s possible to re-set the sortable cancel settings by adding your own script to the admin_enqueue_scripts which includes something like the following:

    $(document).ready(function(){
    		jQuery(".wp-list-table tbody").sortable({
    			cancel:	'.inline-edit-row, input, textarea, button, select, option'
    		});
    
    	});
Viewing 1 replies (of 1 total)
  • The topic ‘Exception for inputs, suggestion’ is closed to new replies.