Skip to main content

Search and Top Navigation

#4704 closed bug (fixed)

Opened July 22, 2009 07:53PM UTC

Closed December 02, 2009 12:34AM UTC

Datepicker global variable isn't unique

Reported by: obrie Owned by:
Priority: critical Milestone: 1.8
Component: ui.datepicker Version: 1.7.2
Keywords: Cc:
Blocked by: Blocking:
Description

One of the nice things with jQuery is that it shouldn't conflict with anything else on the page, even another jQuery installation. In the Datepicker widget, a global variable is added (DP_jQuery) that will cause problems if there is more than one install of jQuery on the page.

While this may be an edge case, it affects my particular usage because we have a library which uses jQuery UI that gets distributed on many websites, any of which may have their own version of jQuery / jQuery UI installed. As a result, we need to make sure that our library (and so, jQuery and jQuery UI) introduce no conflicts with anything else on the page.

Since DP_jQuery would conflict with another installation of jQuery UI, it should be at least a unique variable such that the two can coexist. This patch uses Datepicker's uuid to generate a unique global variable which is then referenced through the rest of the plugin.

Ideally, there shouldn't be a need for a global variable at all. However, this preserves jQuery's non-conflicting nature.

Attachments (1)
  • noconflict.diff (6.1 KB) - added by obrie July 29, 2009 10:58PM UTC.

    Non-conflicting ui.datepicker (fixed when using multiple instances)

Change History (2)

Changed August 12, 2009 12:50PM UTC by scottgonzalez comment:1

milestone: TBD1.8
priority: minorcritical

Changed December 02, 2009 12:34AM UTC by kbwood comment:2

resolution: → fixed
status: newclosed

Fixed in r3486.