gform_load_field_choices

gform_load_field_choices

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 ) {    ?>                

發表回覆

您的郵箱地址不會被公開。 必填項已用 * 標註