Hello, I am using the 1.0 release of the displaytag and I am having trouble with the titleKey attribute. It seems to work fine on columns that are using the property attribute to render the data. However, my columns that have content in the body of the tag show up with a blank title. Here's an example:

<display:table name="model.procedureList" sort="list" uid="listProcedure" pagesize="40" export="true" >
  <display:column property="name" titleKey="label.name"
                url="" paramId="procedureId" paramProperty="id"
                sortable="true" />
  <display:column titleKey="label.description" >
    <c:out value="${listProcedure.description}">
      <fmt:message bundle="${tagBundle}" key="label.noDescriptionAvailable"/>
    </c:out>
  </display:column>
</display:table>

In this case the title of the name column renders properly, but the description column has nothing in it's header field at all (just an empty <th></th>). Anyone have any idea if this is a known issue (or even better, a work around)?

Thanks,
Scott

Reply via email to