I was wondering why you disabled list
field types in the Select Columns view? It's simple to add:
1. Delete the following from line 119 in select_columns.php
&& RGFormsModel::get_input_type($field) != "list"
2. Add to line 863 (above default
):
case "list" :
$field = RGFormsModel::get_field($form, $field_id);
$value = GFCommon::get_lead_field_display($field, $value);
break;
It would be great if you could enable this - it would allow the list type to be used in the Directory add-on.