Ticket #4684 (closed bug: fixed)

Opened 14 months ago

Last modified 14 months ago

Datepicker bug when textbox id contains '$'

Reported by: ashish879 Owned by:
Priority: minor Milestone: 1.8
Component: ui.datepicker Version: 1.7.2
Keywords: Cc:

Description

In ASP.NET a number of controls are rendered with the '$' inside the element Id.

Ex. <input type="text" id="txt$sample" class="datebox" />

I can use the following 3 valid selectors to display the datepicker for that box:

$('#txt\\$sample').datepicker(); $("input:text[id$='sample']").datepicker(); $('.datebox').datepicker();

All 3 of these will display the datepicker when the textbox receives focus, but when a date is selected in the datepicker, an exception is thrown.

Once the "$" is removed from the element id, the error goes away.

Change History

Changed 14 months ago by scott.gonzalez

  • milestone changed from TBD to 1.8

Changed 14 months ago by kbwood

  • status changed from new to closed
  • resolution set to fixed

Fixed in r2956.

Note: See TracTickets for help on using tickets.