Ecside2.0 如何使用#_EX动态脚本啊?
stamina
2008-04-09
Ecside2.0 如何使用#_EX动态脚本啊?
为什么下面的代码没有效果 #_EX: if ( VAR.isSatRest == 'true') { return '<input type="checkbox" value="0" checked />' } else { return '<input type="checkbox" value="0" />' } 而是直接把代码显示出来了? 是不是缺少引用啊? |
|
hotice
2008-06-30
同样的问题,使用ex直接导致该列消失
|
|
gavin213
2008-07-01
用jstl实现吧,原来也遇到过类似问题,类似这样:
<ec:column property="status" title="工作状态" width="10%" columnId="status" style="text-align:center;"> <c:choose> <c:when test="${record.status=='启用'}"> <img name="work" src="ext2/resources/images/green.gif">启用 </c:when> <c:otherwise> <img name="work" src="ext2/resources/images/red.gif">停用 </c:otherwise> </c:choose> </ec:column> |