PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

List Input in Select Columns

  1. 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.

    Posted 12 years ago on Tuesday September 27, 2011 | Permalink
  2. Right now the primary reason why it was disabled is the List Field could be a multi-column list which could complicate the entry list display. A single column list probably would not and could be displayed as a comma delimited list but a multi-column list field is output as a table because that is the type of data it is so it would pose UI issues for the entry list page. We can look into this and see how we can handle this.

    Posted 12 years ago on Tuesday September 27, 2011 | Permalink
  3. Cool - thanks for the explanation.

    Posted 12 years ago on Tuesday September 27, 2011 | Permalink

This topic has been resolved and has been closed to new replies.