Table Of Contents
Description
This hook can be used to change the Nothing Selected text being used inside collapsible pages. With this you can enable different text for each page of the form.
Parameters
NothingSelected | String
form_id | Int
pageNumber | Int
Return
String.
Usage
Copy the below code to a HTML field inside your form or use the Code chest plugin
<script type="text/javascript">
if ( typeof gform !== "undefined" ) {
window.gform.addFilter("gotrls_summary_page_nothing_selected_text",function(nothingSelectedText, formId, pageNumber){
return 'Your new nothing selected text goes here';
});
}
</script>
