I am in the process of moving from 1.1b3 to 1.1rc1. My problem is with the following 
code:

    <c:forEach var="revision" items="${revisionHistoryForm.revisions}">
      <tr>
        <td><h:radio property="selectedId" value="${revision.id}" /></td>
        <td><c:out value="${revision.id}" /></td>
        <td><c:out value="${revision.timestamp}" /></td>
      </tr>
    </c:forEach>

With 1.1rc1, I am getting:

      <tr>
        <td><input type="radio" name="selectedId" value="${revision.id}" 
checked="checked"></td>
        <td>1</td>
        <td>03/18/38 04:01:42 PM</td>
      </tr>
    
      <tr>
        <td><input type="radio" name="selectedId" value="${revision.id}" 
checked="checked"></td>
        <td>2</td>
        <td>03/18/38 04:01:49 PM</td>
      </tr>
    
      <tr>
        <td><input type="radio" name="selectedId" value="${revision.id}" 
checked="checked"></td>
        <td>3</td>
        <td>03/18/38 04:01:58 PM</td>
      </tr>

Clearly, I want the id property of the revision bean, not the expression itself. This 
worked in 1.1b3. My taglib declaration:

<%@ taglib prefix="h" uri="struts-html-el.tld" %>
<%@ taglib prefix="c" uri="jstl-core.tld" %>

My web.xml:

  <taglib>
    <taglib-uri>struts-html-el.tld</taglib-uri>
    <taglib-location>/WEB-INF/lib/struts-html-el.tld</taglib-location>
  </taglib> 

I searched bugzilla and found nothing relevant. And I searched the archives for 
"html-el radio" and found nothing.

Please tell me this is fixed in the current nightly build.

Thanks,

Derek Richardson

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to