救命,动态脚本#_EX不起作用啊

jlle 2007-12-17
在我的代码中
<ec:row recordKey="${recorduser1.userID}" style="#_EX: VAR.userID>5&&VAR.userID<15?'background:red':''" rowId="rowid_${GLOBALROWCOUNT}" >
<ec:attribute>title="${recorduser1.userID}"</ec:attribute>
<ec:column width="50" property="_0" title="序号"  editable="false" resizeColWidth="false" >${GLOBALROWCOUNT}</ec:column>
<ec:column width="80" property="userID" title="用户ID" />
<ec:column width="120" property="userName" title="用户名"  />
<ec:column width="100" property="passWord" title="密码"  />
<ec:column width="120" property="orgID" title="部门" style="#_EX: (VAR.userID>5&&VAR.userID<15)?'color:red':''"/>
<ec:column width="70" property="sex" title="性别"  />
<ec:column  width="70"  property="loginID" title="帐户"  style="#_EX: (VAR.userID>5&&VAR.userID<15)?'color:red':''" >

</ec:column>

</ec:row>
但是设置好了后,style并没有根据userID值不同而改变背景颜色,无论在<ec:row>还是<ec:column接点设置都不好用,除非是单独写脚本,这个怎么解决
jlle 2007-12-18
怎么没动静,是不是现在ECSIDE不活跃了
gavin213 2007-12-21
你写在style中当然错了,这样写:
  <ec:column  width="70"  property="USERID" title="编号" editable="false" r esizeColWidth="false" format="0.00" calc="average,total" calcTitle= "平均,合计" calcSpan="2" >
  #_EX:
  if ( VAR.USERID>5 && VAR.USERID<15) {
	return '<font color=red>'+VAR.USERID+'</font>'
  } else {
	return VAR.USERID;
  }
  </ec:column>
  
jlle 2007-12-22
在ecside2 bata3版本flash演示例子中不是可以写到style中吗
Global site tag (gtag.js) - Google Analytics