亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

jEasyUI格式化列

以下實(shí)例格式化在 easyui DataGrid 里的列數(shù)據(jù),并使用自定義列的 formatter,如果價(jià)格小于 20 就將文本變?yōu)榧t色。

47.png

為了格式化一個(gè)數(shù)據(jù)網(wǎng)格(DataGrid)列,我們需要設(shè)置 formatter 屬性,它是一個(gè)函數(shù)。這個(gè)格式化函數(shù)包含三個(gè)參數(shù):

  • value:當(dāng)前列對(duì)應(yīng)字段值。

  • row:當(dāng)前的行記錄數(shù)據(jù)。

  • index:當(dāng)前的行下標(biāo)。

創(chuàng)建數(shù)據(jù)網(wǎng)格(DataGrid)

	<table id="tt" title="Formatting Columns" class="easyui-datagrid" style="width:550px;height:250px"
			url="data/datagrid_data.json"
			singleSelect="true" iconCls="icon-save">
		<thead>
			<tr>
				<th field="itemid" width="80">Item ID</th>
				<th field="productid" width="80">Product ID</th>
				<th field="listprice" width="80" align="right" formatter="formatPrice">List Price</th>
				<th field="unitcost" width="80" align="right">Unit Cost</th>
				<th field="attr1" width="100">Attribute</th>
				<th field="status" width="60" align="center">Stauts</th>
			</tr>
		</thead>
	</table>

請(qǐng)注意,'listprice' 字段有一個(gè) 'formatter' 屬性,用來(lái)指明格式化函數(shù)。

寫格式化函數(shù)

	function formatPrice(val,row){
		if (val < 20){
			return '<span style="color:red;">('+val+')</span>';
		} else {
			return val;
		}
	}

下載 jQuery EasyUI 實(shí)例

jeasyui-datagrid-datagrid7.zip