0
자식 테이블이 포함 된 displaytag 테이블을 만들 수 있습니까? 아래의 예는 연락 방법이 하위 테이블 인 직원 보고서를 작성하는 것입니다.부모 테이블에 자식 테이블을 가질 수 있습니까
<%@ taglib uri="http://displaytag.sf.net" prefix="display"%>
<display:table id="employees" name="employees" uid="1">
<display:column title="Id" property="employeeId" />
<display:column title="Department" property="department" />
<display:column title="Contact Points" property="contacts">
<display:table id="contacts" name="contacts" uid="2">
<display:column title="Postal Address" property="postalAddress" />
<display:column title="Email" property="emailAddress" />
<display:column title="Cell Phone" property="cellPhoneNumber" />
</display:table>
</display:column>
</display:table>
내가 중첩 된 테이블 데이터를 내보낼 수 없습니다 생각 this 모범을 따를? 그렇게 할 수있는 옵션이 있습니까? – Rishi