Support from Acquia helps fund testing for Drupal Acquia logo

Comments

arulraj created an issue. See original summary.

arulraj’s picture

Added batch to set autocomplete off for date popup fields.

arulraj’s picture

Priority: Minor » Normal
arulraj’s picture

Priority: Normal » Major

Waiting for someone review.

arulraj’s picture

Priority: Major » Critical
arulraj’s picture

When it will get reviewed?

arulraj’s picture

When it will get reviewed?

joelstein’s picture

Status: Needs review » Reviewed & tested by the community
FileSize
549 bytes

I needed this too! Patched worked perfectly, but I think "off" should be lowercase. Here's a revised patch with only making it lowercase.

Status: Reviewed & tested by the community » Needs work

The last submitted patch, 8: date-popup-widget-autocomplete-off-2706965-8.patch, failed testing. View results
- codesniffer_fixes.patch Interdiff of automated coding standards fixes only.

giupenni’s picture

Patch #8 works fine for me.

giupenni’s picture

Ok, this patch works for fields but not works for exposed filter

DamienMcKenna’s picture

Version: 7.x-2.8 » 7.x-2.x-dev
Assigned: arulraj » Unassigned
DamienMcKenna’s picture

Priority: Critical » Normal
Status: Needs work » Needs review

  • DamienMcKenna committed 58d7d24 on 7.x-2.x authored by arulraj
    Issue #2706965 by DamienMcKenna, arulraj, joelstein: Getting browser...
DamienMcKenna’s picture

Committed. Thanks!

steinmb’s picture

Status: Needs review » Fixed
DamienMcKenna’s picture

Heh, thanks :)

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.

FireHawkX’s picture

Sorry for writing in a closed thread, but I am using latest dev version of the module (drupal 7) and was getting overlay (autocomplete) over the date_popup picker...

So writing here if anyone else is searching for a solution to the autocomplete appearing over the date_popup picker

I eventually added the following line
$sub_element['#attributes']['autocomplete'] = "off";

at line 439 of date_popup.module just ABOVE $sub_element['#description'] = ' ' . t('E.g., @date', array(
... and it worked!! :)