Hi,

when displaying a ticket in firefox 2.0 the following code will display
with the wrong radiobutton checked:

<fieldset id="action">
  <legend>Action</legend>
  <input type="radio" id="leave" name="action" value="leave"
checked="checked" />
  <label for="leave">leave as new</label>
  <br />
  <input type="radio" id="accept" name="action" value="accept" />
  <label for="accept">accept ticket</label>
  <br />
  <input type="radio" id="resolve" name="action" value="resolve" />
  <label for="resolve">resolve</label>
  <label for="resolve_choice">as:
    <select size="1" id="resolve_choice" name="resolve_choice">
<option>fixed</option><option>invalid</option><option>wontfix</option><option>duplicate</option><option>worksforme</option>
    </select>
  </label>
  <br />
  <input type="radio" id="reassign" name="action" value="reassign" />
  <label for="reassign">reassign</label>
  <label for="reassign_choice">to:
    <select size="1" id="reassign_choice" name="reassign_choice">
<option>user1</option><option>user2</option><option
selected="selected">user3</option>
    </select>
  </label>
  <br />
</fieldset>

although "leave" has the attribute "checked" the radiobutton for
reassign is checked.
IE6 renders this code just fine.

BUT the following code fragment for a custom field is rendered fine by
firefox:

<label>
  <input type="radio" name="field_deps_external" value="Not set" />
    Not set
</label>
<label>
  <input type="radio" name="field_deps_external" value="None"
checked="checked" />
    None
</label><label>
  <input type="radio" name="field_deps_external" value="Exist" />
    Exist
</label>

Here the radiobutton "None" is checked.

Max


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac 
Development" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to