Gravity Forms Plugin Addon Multi Select
A Gravity Forms Addon the Allows for Multi Select With JQuery
by Nick Mole · github.com/nicholasmole/gf-plugin-addon-multi-select
★ 0stars
0forks
Install
No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:
wp plugin install https://github.com/nicholasmole/gf-plugin-addon-multi-select/archive/refs/heads/master.zipAn addon to the gravity form plugin that selects multi check boxs
Quick Tutorial
Check for the checkbox with value=%VALUETOCHECK%
Call Function when that checkbox is checked.
$('.checkall li:first-child input:checkbox[value="%VALUETOCHECK%"]').click(function() {
Repeat this in function with all checkboxs of a value
$(this).parent('li').parent('ul').find(':checkbox[value="%VALUEFORCHECKED%"]').attr('checked', this.checked);