-
Notifications
You must be signed in to change notification settings - Fork 12
Table Field Support
Jörn Lund edited this page Aug 31, 2018
·
1 revision
Support Table Field: https://de.wordpress.org/plugins/advanced-custom-fields-table-field/
$(document).on('acf_duplicate:table', function(e){
var $src = $(e.target),
$dest = e.destination;
$dest.find('.acf-table-table').html( $src.find('.acf-table-table').html() );
$dest.find('select').val( $src.find('select').val() ).trigger('change');
e.preventDefault();
});