Edgewall Software
Modify

Opened 14 years ago

Closed 14 years ago

Last modified 14 years ago

#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

     
    9191    // Convenience function for creating an <input type="radio">
    9292    function createRadio(name, value, id) {
    9393      // 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">',
    9595                          id, name, value));
    9696    }
    9797

Attachments (0)

Change History (2)

comment:1 by Remy Blank, 14 years ago

Resolution: fixed
Status: newclosed

Good catch, thanks! Applied in [9810].

comment:2 by Remy Blank, 14 years ago

Owner: set to Jun Omae

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain Jun Omae.
The resolution will be deleted. Next status will be 'reopened'.
to The owner will be changed from Jun Omae to the specified user.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.