[ECSide] 关于ecTable中数据源迭代的问题。

fengsky491 2008-06-06
ec:table items="recruitInfoList" var="recruit" action="" title="" style="" tableId="ec" autoIncludeParameters="false">
<ec:row>
<ec:column property="select" width="8%" title="No." sortable="false" filterable="false" > <ww:checkbox name="checkBox" value="false" fieldValue="${recruit.id}"> </ww:checkbox>
</ec:column>

<ec:column property="id" title="test" sortable="false" filterable="false">
<ww:iterator value="#{recruit.pubAttachments}">
<ww:property value="attachmentId"/>
</ww:iterator>
</ec:column>
</ec:row>

这是在ecTable里的上面的 <ww:property value="attachmentId"/>总是取不到值,

而直接写循环迭代如下:
<ww:iterator value="recruitInfoList">
        <ww:iterator value="pubAttachments">
        <ww:property value="attachmentId"/>
</ww:iterator>
则能取到值,这是怎么回事。
在ecTable中${recruit.pubAttachments}取到的值是行如这样的:
[com.test.sys.database.PubAttachment@1946cd6]
Global site tag (gtag.js) - Google Analytics