DescriptionUsageParametersExamplesPlacementSinceSource Code
Description
This JavaScript hook allows help text to be displayed below the choices in the Form Editor.
Note: This hook in used in the Gravity Forms Quiz and Survey add-ons.
Usage
12345gform.addAction('gform_load_field_choices', function (field) { //do something });
Parameters
field Field Object
The current field.
Examples
This example uses the gform_admin_pre_render action to load the hook.
1234567891011121314add_action( 'gform_admin_pre_render', 'pre_render_function' );function pre_render_function( $form ) { ?>