After selecting the fileds in forms > import/export, there is no possibility to change the order sadly. How is it used?
]]>Hi there @apogi @doekenorg
Nice plugin but I just wanted to note that reloading the last saved state is no longer working due to chrome deprecating DOMSubtreeModified: https://developer.chrome.com/blog/mutation-events-deprecation
It would be amazing if an update to this was possible!
Cheers,
$list.on('DOMSubtreeModified', function () {
if (!updating) {
// Prevent endless loop. If we aren't updating don't trigger this event.
return;
}
// If the list is empty, we wait for it to fill up.
if ($list.find('li').length > 0) {
updating = false;
setListOrder($export_form.val(), $list);
}
});
]]>
Hi,
Thanks for this very useful plugin it works great.
The only thing missing is the ability to save the selected fields chosen and their order. Currently everytime you want to export entries you have to reselect the fields you want exporting. Also, I have a custom field added using the following filter:
add_filter( 'gform_export_fields', 'add_fields', 10, 1 );
function add_fields( $form ) {
array_push( $form['fields'], array( 'id' => 'custom_field1', 'label' => __( 'oldnumber', 'gravityforms' ) ) );
return $form;
}
I need this field to be exported at Col 1, but every time I come back to do a new export this field is dropping to the bottom of the list. So I need a way to save the order of the fields too.
Can this be possible?
Thanks.
]]>