Date drop down list

Hi,

I want the date field not to show past dates, but only future days. Is this not possible? I already tried this code, but it didnt work:

gform.addFilter( 'gform_datepicker_options_pre_init', function( optionsObj, formId, fieldId ) {
      if ( formId == 2 && fieldId == 111 ) {
          optionsObj.minDate = 0;
      }
      return optionsObj;
  });

111 = Field id.

The gform_datepicker_options_pre_init filter is only for datepicker type date fields. For date fields with multiple inputs or drop downs, you can use the following filters: