Passing field results between forms
-
Love this plug-in. One of 10 most important plug-ins for WordPress! Fills a much needed gap in WP. And I love your customer support.
I’m using this script referenced in other forum posts to pass field content from one form to another using CSS classes.
<script>
jQuery(document).on(‘change’, ‘.my-source-field input’, function(){
jQuery(‘.my-destination-field input’).val(jQuery(this).val()).change();
});
</script>Seems to work flawlessly for a NUMBER field but does not update dynamically in the destination form when the result in a CALCULATED FIELD that is passed from the Source to the Destination form changes as a result of changes in the Source form. The script does dynamically update the destination field of the CALCULATED FIELD when a NUMBER field that is passed via this script changes that affects the calculation, but apparently ONLY in that event. It does not change when the CALCULATED FIELD changes as the result of other calculations in the source form.
Is there a way to update the content dynamically ANY TIME that source-CALCULATED FIELD changes?
Thanks again for the GREAT plug-in!
The page I need help with: [log in to see the link]
- The topic ‘Passing field results between forms’ is closed to new replies.