Modify ↓
#9395 closed defect (fixed)
[PATCH] createRadio() generates broken value attribute of input element
Reported by: | Jun Omae | Owned by: | Jun Omae |
---|---|---|---|
Priority: | normal | Milestone: | 0.12 |
Component: | ticket system | Version: | 0.12dev |
Severity: | normal | Keywords: | |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
The radio buttons of clauses don't work in custom query page.
-
trac/htdocs/js/query.js
91 91 // Convenience function for creating an <input type="radio"> 92 92 function createRadio(name, value, id) { 93 93 // Workaround for IE, otherwise the radio buttons are not selectable 94 return $($.template('<input type="radio" id="$1" name="$2" value "$3">',94 return $($.template('<input type="radio" id="$1" name="$2" value="$3">', 95 95 id, name, value)); 96 96 } 97 97
Attachments (0)
Change History (2)
comment:1 by , 14 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:2 by , 14 years ago
Owner: | set to |
---|
Note:
See TracTickets
for help on using tickets.
Good catch, thanks! Applied in [9810].