Side navigation
#14286 closed bug (notabug)
Opened August 22, 2013 04:17PM UTC
Closed August 23, 2013 01:14PM UTC
Compound Radio Button Group Name Changed Event Issue
Reported by: | Kyle.Schiele@AltusGeomatics.com | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.9.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
The changed event not attach to a radio button group properly using this approach. In 1.7.1 or 1.9.1 it does work properly in 1.7.2 please see this working example that can be broken by changing the JQuery version. http://jsfiddle.net/zn7q2/2/
$(document).ready(function ()
{
$("input[name=DateSearchOptions.Test]:radio").change(function() {alert('Changed');})
});
Attachments (0)
Change History (1)
Changed August 23, 2013 01:14PM UTC by comment:1
resolution: | → notabug |
---|---|
status: | new → closed |
Attribute selector values that are not CSS identifiers should be quoted. When in doubt, quote the value:
http://jsfiddle.net/zn7q2/5/