欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

display:table的应用笔记

程序员文章站 2022-07-13 23:45:16
...

display:table
name: 对应后台request中存储的list集合
id:声明这个id就相当于foreach中的var
可以通过声明的id去获取list中对象的属性
例如:${row.xxx}
row=对象的别名通过别名就可以获取到属性了

display:column
title:列名
proper:对象属性该字段与对象属性符合既可

<display:table name="attributesList"   class="table table-list table-bordered" cellspacing="0" cellpadding="0" id="row">
		
		<display:column style="width:5%;text-align:center" title="序号" ><%=index++%></display:column>
		<display:column style="width:9%" title="编号" property="attrinumber" sortable="true"/> 
		<display:column style="width:9%" title="数据项名" property="attriname" sortable="true"/>
		<display:column style="width:9%" title="中文简称" property="attrilabel" sortable="true"/>
		<display:column style="width:9%" title="类型"  property="attritype" sortable="true"/>
		<display:column style="width:10%;text-align:right" title="日期格式/长度" sortable="true">
			<c:if test="${row.attritype == 'Date'}">
				${row.dateFormat}
			</c:if>
			<c:if test="${row.attritype == 'Number'}">
				精度:${row.length} &nbsp;&nbsp;标度:${row.attriprecision}
			</c:if>
			<c:if test="${row.attritype != 'Number' &&  row.attritype != 'Date'}">
				${row.length}
			</c:if>
		</display:column> 
		
	</display:table>