Description
The “gform_list_post_item_delete” JavaScript action in Gravity Forms is fired after an item is deleted from a List field, allowing further actions to be performed.
Usage
1 2 3 | gform.addAction( 'gform_list_post_item_delete' , function ( container ) { // do stuff } ); |
Parameters
- container Javascript Object
The List Field table.
Examples
1. Bind Event To List Item Input
This example shows how you can bind a change event to the new list item input.
1 2 3 4 5 6 7 | <script> gform.addAction( 'gform_list_post_item_delete' , function ( item, container ) { item.find( 'input[type="text"]' ).on( 'change' , function () { console.log( 'Changed!' ); } ); } ); </script> |
Placement
Your code snippet can be placed in a HTML field on your form or in a theme custom JavaScript file.
Source Code
This filter is located in js/gravityforms.js