Description
Filter the row ID summary column value.
Usage
window.gform.addFilter( 'gpnf_row_id_value', 'my_custom_function' );
Parameters
rowId number
The entry’s row ID summary column value.
entry object
The child entry being displayed.
gpnf GPNestedForms
Current instance of the GPNestedForms object.
Since
This filter is available since Gravity Forms Nested Forms 1.1.12.
Examples
Increase starting Row ID by 1
Instead of starting at 1
for the Row ID, start at 2
.
window.gform.addFilter('gpnf_row_id_value', function(rowId) {
return rowId + 1;
});