multiple select live search
Jamroom Developers
You could do it in a 'multi_select' form field, but there is no 'multi_live_search', which is what you originally asked for.
For a 'multi_select', do something like -
$_tmp = array(
'name' => 'field_name',
'type' => 'select_multiple',
'label' => 'Select Profiles',
'help' => 'Your help string for this field',
'options' => 'yrModule_get_profiles',
'default' => 0
);
jrProfile_register_quota_setting('yrModule', $_tmp);
'yrModule_get_profiles' would be a function to return key/value array pairs of _profile_id and profile_name
hth
Pa