[ECSide] Help! 多表时,jsp页面的<ec:column 的 property怎么写?
lxxing
2007-07-11
我在action中代码如下:
Query query=session.createQuery("from PCustom c ,PProduct p where c.customid=p.customid "); List querylist=query.list(); request.setAttribute("querylist", querylist); 前台页面如下: <ec:table items="querylist" var="userlist" retrieveRowsCallback="process" action="${pageContext.request.contextPath}/admin/custom_product.do" <ec:row> <ec:column width="100" property="????" title="客户名称" > ---------------- 就是以下的property该怎么写呀?谢谢! |
|
lxxing
2007-07-13
没人知道吗?斑竹呀
|
|
daiing
2007-07-16
据我所知你这样出来的结果应该是对象数组吧,你要重新做个对象或者map,把值都写进去才行。如果哪位有更好的方法我也想知道
|